Просмотр исходного кода

Merge branch 'master' of 192.168.1.41:SmartCost/SCCommon

lipk 3 лет назад
Родитель
Сommit
b60edb59b7
2 измененных файлов с 25 добавлено и 0 удалено
  1. 24 0
      types/src/interface/budgetCheck.ts
  2. 1 0
      types/src/interface/index.ts

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

@@ -0,0 +1,24 @@
+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;
+  businessID: string; // 业务ID
+  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';