@@ -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[];
- };
+ }[];
}
@@ -213,3 +213,12 @@ export interface IGypFileTemplate {
gypID: string;
businessID: string;
+
+// 事项库
+export interface IMatterList {
+ ID: string;
+ name: string;
+ approvalID: string;
+ createdID: string;
+ createdTime: number;
+}