lipk 2 лет назад
Родитель
Сommit
b443d15fef
2 измененных файлов с 10 добавлено и 6 удалено
  1. 1 6
      types/src/interface/api/workSpaceApi.ts
  2. 9 0
      types/src/interface/matter.ts

+ 1 - 6
types/src/interface/api/workSpaceApi.ts

@@ -17,15 +17,10 @@ export namespace GetYsProfileList {
 
 // 获取工作台-快捷方式的数据
 export namespace GetProfileMatterList {
-  export type Params = {
-    matterID: string;
-    matterListID: string;
-  }[];
-
   export type Response = {
     matterID: string;
     matterListID: string;
     matterListName: string;
     reportConfig?: IMatterReportConfig[];
-  };
+  }[];
 }

+ 9 - 0
types/src/interface/matter.ts

@@ -213,3 +213,12 @@ export interface IGypFileTemplate {
   gypID: string;
   businessID: string;
 }
+
+// 事项库
+export interface IMatterList {
+  ID: string;
+  name: string;
+  approvalID: string;
+  createdID: string;
+  createdTime: number;
+}