|
|
@@ -3,6 +3,7 @@ import { CptModelName, SubModelName, ActionType } from './base';
|
|
|
import { BusinessTypeKey } from './gather';
|
|
|
import { IExecutorApprovaledPermission } from './gatherExecutor';
|
|
|
import { executorMember } from './approvalStatus';
|
|
|
+import { IStepMatter } from './matter';
|
|
|
|
|
|
// 环节类型
|
|
|
export enum SectorType {
|
|
|
@@ -141,6 +142,10 @@ export interface IProcessExecutor {
|
|
|
members?: Members[];
|
|
|
}
|
|
|
|
|
|
+export interface SimpleDynamicStep {
|
|
|
+ stepID: string;
|
|
|
+ executorID: string;
|
|
|
+}
|
|
|
// 3合1参与者信息
|
|
|
export interface IProcedureParticipantInfo {
|
|
|
approvalWay: string;
|
|
|
@@ -150,6 +155,8 @@ export interface IProcedureParticipantInfo {
|
|
|
members?: Members[];
|
|
|
reportTime?: string;
|
|
|
};
|
|
|
+ dynamicSteps: SimpleDynamicStep[];
|
|
|
+ stepMatters: IStepMatter[];
|
|
|
}
|
|
|
|
|
|
// 3合1分支判断信息
|