瀏覽代碼

add shortname?: string;

visuddhinanda 3 年之前
父節點
當前提交
e669c862f9
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      dashboard/src/components/api/Dict.ts

+ 2 - 0
dashboard/src/components/api/Dict.ts

@@ -46,6 +46,7 @@ export interface IApiResponseDictData {
   dict_id: string;
   dict_name?: string;
   dict_shortname?: string;
+  shortname?: string;
   confidence: number;
   creator_id: number;
   updated_at: string;
@@ -63,6 +64,7 @@ export interface IApiResponseDictList {
   data: {
     rows: IApiResponseDictData[];
     count: number;
+    time?: number;
   };
 }