Browse Source

feat(types): 在ICollaborator添加name字段

LuoHaoxuan 3 years atrás
parent
commit
b1afc4c654
1 changed files with 1 additions and 0 deletions
  1. 1 0
      types/src/interface/process.ts

+ 1 - 0
types/src/interface/process.ts

@@ -163,6 +163,7 @@ export interface SimpleDynamicStep {
 // 3合1协审人信息
 export interface ICollaborator {
   ID: string; // 用户ID
+  name: string; // 用户姓名
   deadline: string; //  截至时间
   // permissions?: ICollaboratorPermission[]; // 协审权限
 }