Browse Source

feat(types): 添加reviewRecord相关的接口

LuoHaoxuan 3 years ago
parent
commit
fd5d45e366
1 changed files with 6 additions and 0 deletions
  1. 6 0
      types/src/interface/reviewRecord.ts

+ 6 - 0
types/src/interface/reviewRecord.ts

@@ -2,6 +2,7 @@ export interface IReviewRecordSidebarListItem {
   ID: string;
   title: string;
   executor: string;
+  approvalTime: number;
 }
 
 export interface IReviewRecordFormTree {
@@ -12,9 +13,14 @@ export interface IReviewRecordFormTree {
   children?: IReviewRecordFormTree[];
 }
 
+export interface IReviewRecordFormInfo {
+  issues: Record<string, boolean>;
+  pass: Record<string, string>;
+}
 export interface IReviewRecordForm {
   ID: string;
   dataID?: string;
+  formInfos?: IReviewRecordFormInfo;
   businessID: string; // 业务ID
   approvalID: string; // 流程ID
   matterID: string; // 事项ID