| 123456789101112131415161718192021222324 |
- export interface IBudgetCheckSidebarListItem {
- ID: string;
- title: string;
- executor: 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[]; // 复核表结构
- }
|