Przeglądaj źródła

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

LuoHaoxuan 3 lat temu
rodzic
commit
9abb20d54b
2 zmienionych plików z 7 dodań i 0 usunięć
  1. 1 0
      types/src/interface/matter.ts
  2. 6 0
      types/src/interface/process.ts

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

@@ -31,6 +31,7 @@ export interface IStepMatter {
 
 export interface IGatherStepMatter extends IStepMatter {
   businessID: string;
+  userID: string;
 }
 
 export interface IYsProfileTemplate {

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

@@ -152,6 +152,11 @@ export interface SimpleDynamicStep {
   executorID?: string;
   executorName?: string;
 }
+
+// 3合1协审人信息
+export interface ICollaborator {
+  ID: string; // 用户ID
+}
 // 3合1参与者信息
 export interface IProcedureParticipantInfo {
   approvalWay: string;
@@ -161,6 +166,7 @@ export interface IProcedureParticipantInfo {
     members?: Members[];
     reportTime?: string;
   };
+  collaborator: ICollaborator[];
   dynamicSteps: SimpleDynamicStep[];
   stepMatters: IStepMatter[];
 }