Browse Source

feat(types): 修改BudgetCheck为ReviewRecord

LuoHaoxuan 3 years ago
parent
commit
6711bf318f
2 changed files with 6 additions and 6 deletions
  1. 1 1
      types/src/interface/index.ts
  2. 5 5
      types/src/interface/budgetCheck.ts

+ 1 - 1
types/src/interface/index.ts

@@ -42,5 +42,5 @@ export * from './area';
 export * from './processLog';
 export * from './generalSetting';
 export * from './resultDocument';
-export * from './budgetCheck';
+export * from './reviewRecord';
 export * from './uploadMsg'

+ 5 - 5
types/src/interface/budgetCheck.ts

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