budgetCheck.ts 577 B

123456789101112131415161718192021222324
  1. export interface IBudgetCheckSidebarListItem {
  2. ID: string;
  3. title: string;
  4. executor: string;
  5. }
  6. export interface IBudgetCheckFormTree {
  7. ID: string;
  8. name: string;
  9. parentID: string;
  10. folder: boolean;
  11. children?: IBudgetCheckFormTree[];
  12. }
  13. export interface IBudgetCheckForm {
  14. ID: string;
  15. businessID: string; // 业务ID
  16. approvalID: string; // 流程ID
  17. matterID: string; // 事项ID
  18. title: string; // 复核表标题
  19. subtitle: string; // 复核表副标题
  20. executorIDs: string[]; // 关联执行者ID
  21. tree: IBudgetCheckFormTree[]; // 复核表结构
  22. }