소스 검색

feat(types): 修改日志

lipk 3 년 전
부모
커밋
463c3725d2
1개의 변경된 파일8개의 추가작업 그리고 11개의 파일을 삭제
  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 {