Browse Source

feat(ttypes): 审核评分表,添加审核人

lipk 3 years atrás
parent
commit
f00b0fd65b
1 changed files with 5 additions and 0 deletions
  1. 5 0
      types/src/interface/auditScore.ts

+ 5 - 0
types/src/interface/auditScore.ts

@@ -20,4 +20,9 @@ export interface IAuditScore {
     qualified: number;
     failure: number;
   };
+  personApproving?: {
+    name: string;
+    executorID: string;
+    enable: boolean;
+  }[];
 }