Quellcode durchsuchen

feat(types): 修改日志

lipk vor 3 Jahren
Ursprung
Commit
463c3725d2
1 geänderte Dateien mit 8 neuen und 11 gelöschten Zeilen
  1. 8 11
      types/src/interface/editLog.ts

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

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