소스 검색

feat(types): 新增budgetCheck

LuoHaoxuan 3 년 전
부모
커밋
51a8a1732a
2개의 변경된 파일24개의 추가작업 그리고 0개의 파일을 삭제
  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 './generalSetting';
 export * from './resultDocument';
+export * from './budgetCheck';