|
|
@@ -335,10 +335,16 @@ export interface IApproval {
|
|
|
createdTime: number;
|
|
|
process: IProcess[];
|
|
|
templateProcess?: IProcedureProcess[]; // 三合一需要用的流程模板
|
|
|
+ scope?: IScopeType[];
|
|
|
subjectID?: string;
|
|
|
businessType?: BusinessTypeKey;
|
|
|
}
|
|
|
|
|
|
+export interface IScopeType {
|
|
|
+ type: string;
|
|
|
+ value: string;
|
|
|
+}
|
|
|
+
|
|
|
export enum ApprovalStatus {
|
|
|
CREATED = 'created', // 创建完成
|
|
|
PROCESSING = 'processing', // 正在审批
|