add 增加按钮权限

This commit is contained in:
gssong
2025-03-01 23:46:46 +08:00
parent aef5a02097
commit 61b81f4692
3 changed files with 46 additions and 19 deletions

View File

@ -6,7 +6,6 @@ export interface CategoryTreeVO {
children: CategoryTreeVO[];
}
export interface CategoryVO {
/**
* 流程分类ID
*/
@ -39,7 +38,6 @@ export interface CategoryVO {
}
export interface CategoryForm extends BaseEntity {
/**
* 流程分类ID
*/
@ -59,14 +57,11 @@ export interface CategoryForm extends BaseEntity {
* 显示顺序
*/
orderNum?: number;
}
export interface CategoryQuery {
/**
* 流程分类名称
*/
categoryName?: string;
}

View File

@ -29,8 +29,13 @@ export interface FlowTaskVO {
nodeType: number;
nodeRatio: string | number;
version?: string;
buttonList?: buttonList[];
}
export interface buttonList {
code: string;
show: boolean;
}
export interface VariableVo {
key: string;
value: string;