update 优化 支持前端返回节点扩展数据(按钮权限 抄送人 扩展变量)

This commit is contained in:
疯狂的狮子Li
2025-08-28 17:55:21 +08:00
parent f84e95d735
commit 43b4e74c9c
4 changed files with 23 additions and 14 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ export interface UserQuery extends PageQuery {
status?: string;
deptId?: string | number;
roleId?: string | number;
userIds?: string;
userIds?: string | number | (string | number)[] | undefined;
}
/**
+7 -5
View File
@@ -30,18 +30,20 @@ export interface FlowTaskVO {
nodeRatio: string | number;
version?: string;
applyNode?: boolean;
buttonList?: buttonList[];
buttonList?: ButtonList[];
copyList?: FlowCopyVo[];
varList?: Map<string, string>;
businessCode: string;
businessTitle: string;
}
export interface buttonList {
export interface ButtonList {
code: string;
show: boolean;
}
export interface VariableVo {
key: string;
value: string;
export interface FlowCopyVo {
userId: string | number;
userName: string;
}
export interface TaskOperationBo {