This commit is contained in:
2025-12-02 13:36:09 +08:00
parent ee6dd64f98
commit 94718edd6b
97 changed files with 570 additions and 579 deletions

View File

@@ -40,5 +40,5 @@ public class BaseDTO implements Serializable {
private Date deleteTime;
@Schema(description = "是否已删除", defaultValue = "false")
private Boolean deleted = false;
private BOOLEAN deleted = false;
}

View File

@@ -35,11 +35,11 @@ public class TbSysAclDTO extends BaseDTO {
private String principalDeptId;
@Schema(description = "权限位1读 2写 4执行")
private Integer permission;
private INTEGER permission;
@Schema(description = "允许或显式拒绝", defaultValue = "true")
private Boolean allow = true;
private BOOLEAN allow = true;
@Schema(description = "是否包含子级对dept/role生效", defaultValue = "false")
private Boolean includeDescendants = false;
private BOOLEAN includeDescendants = false;
}

View File

@@ -33,11 +33,11 @@ public class TbSysAclPolicyDTO extends BaseDTO {
private String viewHierarchyRule;
@Schema(description = "默认权限无显式ACL时应用", defaultValue = "0")
private Integer defaultPermission=0;
private INTEGER defaultPermission=0;
@Schema(description = "默认是否允许", defaultValue = "true")
private boolean defaultAllow=true;
private BOOLEAN defaultAllow=true;
@Schema(description = "是否默认应用到子级", defaultValue = "true")
private boolean applyToChildren=true;
private BOOLEAN applyToChildren=true;
}

View File

@@ -31,7 +31,7 @@ public class TbSysConfigDTO extends BaseDTO {
@Schema(description = "配置值")
private String value;
@Schema(description = "数据类型(String, Integer, Boolean, Float, Double)")
@Schema(description = "数据类型(String, INTEGER, BOOLEAN, Float, Double)")
private String configType;
@Schema(description = "配置渲染类型(select, input, textarea, checkbox, radio, switch)")
@@ -53,9 +53,9 @@ public class TbSysConfigDTO extends BaseDTO {
private String moduleId;
@Schema(description = "配置顺序")
private Integer orderNum;
private INTEGER orderNum;
@Schema(description = "配置状态 0:启用 1:禁用", defaultValue = "0")
private Integer status = 0;
private INTEGER status = 0;
}

View File

@@ -33,5 +33,5 @@ public class TbSysRoleDTO extends BaseDTO {
private String ownerDeptId;
@Schema(description = "角色状态 true 有效, false 无效")
private boolean status;
private BOOLEAN status;
}

View File

@@ -24,7 +24,7 @@ public class TbSysUserInfoDTO extends BaseDTO {
private String avatar;
@Schema(description = "性别")
private Integer gender;
private INTEGER gender;
@Schema(description = "")
private String familyName;
@@ -36,7 +36,7 @@ public class TbSysUserInfoDTO extends BaseDTO {
private String fullName;
@Schema(description = "等级")
private Integer level;
private INTEGER level;
@Schema(description = "身份证号")
private String idCard;

View File

@@ -37,13 +37,13 @@ public class TbSysViewDTO extends BaseDTO {
private String icon;
@Schema(description = "类型")
private Integer type;
private INTEGER type;
@Schema(description = "布局")
private String layout;
@Schema(description = "排序")
private Integer orderNum;
private INTEGER orderNum;
@Schema(description = "描述")
private String description;

View File

@@ -47,6 +47,6 @@ public class BaseVO implements Serializable {
private Date deleteTime;
@Schema(description = "是否已删除", defaultValue = "false")
private Boolean deleted = false;
private BOOLEAN deleted = false;
}