mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 16:23:42 +08:00 
			
		
		
		
	Revert "update 优化返回vo的boolean类型统一使用包装类"
This reverts commit 9e78fcccf7.
			
			
This commit is contained in:
		@@ -60,6 +60,6 @@ public class ProcessEvent implements Serializable {
 | 
			
		||||
    /**
 | 
			
		||||
     * 当为true时为申请人节点办理
 | 
			
		||||
     */
 | 
			
		||||
    private Boolean submit;
 | 
			
		||||
    private boolean submit;
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@ public class MetaVo {
 | 
			
		||||
    /**
 | 
			
		||||
     * 设置为true,则不会被 <keep-alive>缓存
 | 
			
		||||
     */
 | 
			
		||||
    private Boolean noCache;
 | 
			
		||||
    private boolean noCache;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 内链地址(http(s)://开头)
 | 
			
		||||
@@ -37,7 +37,7 @@ public class MetaVo {
 | 
			
		||||
        this.icon = icon;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public MetaVo(String title, String icon, Boolean noCache) {
 | 
			
		||||
    public MetaVo(String title, String icon, boolean noCache) {
 | 
			
		||||
        this.title = title;
 | 
			
		||||
        this.icon = icon;
 | 
			
		||||
        this.noCache = noCache;
 | 
			
		||||
@@ -49,7 +49,7 @@ public class MetaVo {
 | 
			
		||||
        this.link = link;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public MetaVo(String title, String icon, Boolean noCache, String link) {
 | 
			
		||||
    public MetaVo(String title, String icon, boolean noCache, String link) {
 | 
			
		||||
        this.title = title;
 | 
			
		||||
        this.icon = icon;
 | 
			
		||||
        this.noCache = noCache;
 | 
			
		||||
 
 | 
			
		||||
@@ -27,7 +27,7 @@ public class RouterVo {
 | 
			
		||||
    /**
 | 
			
		||||
     * 是否隐藏路由,当设置 true 的时候该路由不会再侧边栏出现
 | 
			
		||||
     */
 | 
			
		||||
    private Boolean hidden;
 | 
			
		||||
    private boolean hidden;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 重定向地址,当设置 noRedirect 的时候该路由在面包屑导航中不可被点击
 | 
			
		||||
 
 | 
			
		||||
@@ -91,9 +91,9 @@ public class SysRoleVo implements Serializable {
 | 
			
		||||
    /**
 | 
			
		||||
     * 用户是否存在此角色标识 默认不存在
 | 
			
		||||
     */
 | 
			
		||||
    private Boolean flag = false;
 | 
			
		||||
    private boolean flag = false;
 | 
			
		||||
 | 
			
		||||
    public Boolean isSuperAdmin() {
 | 
			
		||||
    public boolean isSuperAdmin() {
 | 
			
		||||
        return SystemConstants.SUPER_ADMIN_ID.equals(this.roleId);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -30,12 +30,12 @@ public class ButtonPermissionVo implements Serializable {
 | 
			
		||||
    /**
 | 
			
		||||
     * 是否显示
 | 
			
		||||
     */
 | 
			
		||||
    private Boolean show;
 | 
			
		||||
    private boolean show;
 | 
			
		||||
 | 
			
		||||
    public ButtonPermissionVo() {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public ButtonPermissionVo(String code, Boolean show) {
 | 
			
		||||
    public ButtonPermissionVo(String code, boolean show) {
 | 
			
		||||
        this.code = code;
 | 
			
		||||
        this.show = show;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -177,7 +177,7 @@ public class FlowTaskVo implements Serializable {
 | 
			
		||||
    /**
 | 
			
		||||
     * 是否为申请人节点
 | 
			
		||||
     */
 | 
			
		||||
    private Boolean applyNode;
 | 
			
		||||
    private boolean applyNode;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 按钮权限
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user