mirror of
https://github.com/dataease/dataease.git
synced 2026-05-15 05:22:13 +08:00
perf(X-Pack): 导出权限独立控制
This commit is contained in:
@@ -4,6 +4,7 @@ export interface BusiTreeNode {
|
||||
name: string
|
||||
leaf?: boolean
|
||||
weight: number
|
||||
ext?: number
|
||||
extraFlag: number
|
||||
children?: BusiTreeNode[]
|
||||
}
|
||||
|
||||
2
de-xpack
2
de-xpack
Submodule de-xpack updated: d02a09a678...bba26306bc
@@ -1,7 +1,7 @@
|
||||
package io.dataease.constant;
|
||||
|
||||
public enum AuthEnum {
|
||||
READ(1), EXPORT(4), MANAGE(7), AUTH(9);
|
||||
READ(1), EXPORT(4), EXPORT_VIEW(5), EXPORT_DETAIL(6), MANAGE(7), AUTH(9);
|
||||
private Integer weight;
|
||||
|
||||
public Integer getWeight() {
|
||||
|
||||
@@ -32,4 +32,6 @@ public class BusiNodeVO implements TreeResultModel<BusiNodeVO>, Serializable {
|
||||
private String type;
|
||||
@Schema(description = "子节点")
|
||||
private List<BusiNodeVO> children;
|
||||
@Schema(description = "独立权重")
|
||||
private Integer ext;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user