|
|
@@ -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[];
|
|
|
}
|