|
|
@@ -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; // 复核表结构
|
|
|
+}
|