|
|
@@ -1,18 +1,18 @@
|
|
|
-export interface IBudgetCheckSidebarListItem {
|
|
|
+export interface IReviewRecordSidebarListItem {
|
|
|
ID: string;
|
|
|
title: string;
|
|
|
executor: string;
|
|
|
}
|
|
|
|
|
|
-export interface IBudgetCheckFormTree {
|
|
|
+export interface IReviewRecordFormTree {
|
|
|
ID: string;
|
|
|
name: string;
|
|
|
parentID: string;
|
|
|
folder: boolean;
|
|
|
- children?: IBudgetCheckFormTree[];
|
|
|
+ children?: IReviewRecordFormTree[];
|
|
|
}
|
|
|
|
|
|
-export interface IBudgetCheckForm {
|
|
|
+export interface IReviewRecordForm {
|
|
|
ID: string;
|
|
|
businessID: string; // 业务ID
|
|
|
approvalID: string; // 流程ID
|
|
|
@@ -20,5 +20,5 @@ export interface IBudgetCheckForm {
|
|
|
title: string; // 复核表标题
|
|
|
subtitle: string; // 复核表副标题
|
|
|
executorIDs: string[]; // 关联执行者ID
|
|
|
- tree: IBudgetCheckFormTree[]; // 复核表结构
|
|
|
+ tree: IReviewRecordFormTree[]; // 复核表结构
|
|
|
}
|