Browse Source

fix(types): 修改ICollaboratorItem

LuoHaoxuan 3 years ago
parent
commit
adcf1cdbd0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      types/src/interface/process.ts

+ 2 - 2
types/src/interface/process.ts

@@ -196,8 +196,8 @@ export interface ICollaboratorItem {
   approvalMembers: string[];
   approverName?: string;
   executorInfo?: {
-    executorID?: string;
-    executorName?: string;
+    executorID: string;
+    executorName: string;
   };
 }