Quellcode durchsuchen

feat(types): 在IParticipantConfig添加[key: string]: any;

LuoHaoxuan vor 3 Jahren
Ursprung
Commit
2f8d1e09bb
1 geänderte Dateien mit 1 neuen und 3 gelöschten Zeilen
  1. 1 3
      types/src/interface/process.ts

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

@@ -252,6 +252,7 @@ export interface IParticipantConfig {
   institutionRoles?: string[];
   institutionRoles?: string[];
   fixedCollaborators?: IFixedCollaboratorConfig[];
   fixedCollaborators?: IFixedCollaboratorConfig[];
   cooperations?: { type: string; value: string }[];
   cooperations?: { type: string; value: string }[];
+  [key: string]: any;
 }
 }
 
 
 export interface IProcedureParticipantExecutor {
 export interface IProcedureParticipantExecutor {
@@ -536,9 +537,6 @@ export interface ITodo {
 
 
 export interface IApprovalTodo extends ITodo {
 export interface IApprovalTodo extends ITodo {
   data: IApprovalTodoData;
   data: IApprovalTodoData;
-  isWarning?: boolean;
-  isEmergency?: boolean;
-  stayTime?: number; // 停留时间
 }
 }
 
 
 export enum ChangeRecord {
 export enum ChangeRecord {