add 增加业务扩展

This commit is contained in:
gssong
2025-08-15 21:15:47 +08:00
parent ad7058b739
commit 5e5fca8f6b
10 changed files with 46 additions and 21 deletions
+2
View File
@@ -23,4 +23,6 @@ export interface FlowInstanceVO extends BaseEntity {
flowStatus: string;
flowStatusName: string;
flowTaskList: FlowTaskVO[];
businessCode: string;
businessTitle: string;
}
+2
View File
@@ -1,5 +1,6 @@
export interface LeaveVO {
id: string | number;
applyCode?: string;
leaveType: string;
startDate: string;
endDate: string;
@@ -10,6 +11,7 @@ export interface LeaveVO {
export interface LeaveForm extends BaseEntity {
id?: string | number;
applyCode?: string;
leaveType?: string;
startDate?: string;
endDate?: string;
+2
View File
@@ -31,6 +31,8 @@ export interface FlowTaskVO {
version?: string;
applyNode?: boolean;
buttonList?: buttonList[];
businessCode: string;
businessTitle: string;
}
export interface buttonList {
+1
View File
@@ -10,4 +10,5 @@ export interface StartProcessBo {
businessId: string | number;
flowCode: string;
variables: any;
flowInstanceBizExtBo: any;
}