瀏覽代碼

feat(types): 修改记录类型

lipk 3 年之前
父節點
當前提交
89ecbcd139
共有 1 個文件被更改,包括 11 次插入1 次删除
  1. 11 1
      types/src/interface/editLog.ts

+ 11 - 1
types/src/interface/editLog.ts

@@ -20,7 +20,17 @@ export interface ILogDetail {
   institution?: string; // 单位名称
   institution?: string; // 单位名称
   procunit?: string; // 流程环节
   procunit?: string; // 流程环节
   procuAttr?: string; // 流程环节缩写
   procuAttr?: string; // 流程环节缩写
-  gljLogs?: ILogDetail[];
+  gljLogs?: Array<
+    ILogDetail & {
+      info: {
+        code?: string;
+        name?: string;
+        unit?: string;
+        specs: string;
+        type: GljType;
+      };
+    }
+  >;
 }
 }
 
 
 export interface IEditLog {
 export interface IEditLog {