Ver código fonte

feat(types): 新增budgetCheck

LuoHaoxuan 3 anos atrás
pai
commit
51a8a1732a
2 arquivos alterados com 24 adições e 0 exclusões
  1. 23 0
      types/src/interface/budgetCheck.ts
  2. 1 0
      types/src/interface/index.ts

+ 23 - 0
types/src/interface/budgetCheck.ts

@@ -0,0 +1,23 @@
+export interface IBudgetCheckSidebarListItem {
+  ID: string;
+  title: string;
+  subtitle: string;
+}
+
+export interface IBudgetCheckFormTree {
+  ID: string;
+  name: string;
+  parentID: string;
+  folder: boolean;
+  children?: IBudgetCheckFormTree[];
+}
+
+export interface IBudgetCheckForm {
+  ID: string;
+  approvalID: string; // 流程ID
+  matterID: string; // 事项ID
+  title: string; // 复核表标题
+  subtitle: string; // 复核表副标题
+  executorIDs: string[]; // 关联执行者ID
+  tree: IBudgetCheckFormTree; // 复核表结构
+}

+ 1 - 0
types/src/interface/index.ts

@@ -42,3 +42,4 @@ export * from './area';
 export * from './processLog';
 export * from './processLog';
 export * from './generalSetting';
 export * from './generalSetting';
 export * from './resultDocument';
 export * from './resultDocument';
+export * from './budgetCheck';