update 优化 实体类统一使用包装类型

This commit is contained in:
疯狂的狮子Li 2025-04-14 09:33:36 +08:00
parent ee6c0388da
commit 142fb33d81
6 changed files with 9 additions and 9 deletions

View File

@ -60,6 +60,6 @@ public class ProcessEvent implements Serializable {
/** /**
* 当为true时为申请人节点办理 * 当为true时为申请人节点办理
*/ */
private boolean submit; private Boolean submit;
} }

View File

@ -25,7 +25,7 @@ public class MetaVo {
/** /**
* 设置为true则不会被 <keep-alive>缓存 * 设置为true则不会被 <keep-alive>缓存
*/ */
private boolean noCache; private Boolean noCache;
/** /**
* 内链地址http(s)://开头 * 内链地址http(s)://开头
@ -37,7 +37,7 @@ public class MetaVo {
this.icon = icon; this.icon = icon;
} }
public MetaVo(String title, String icon, boolean noCache) { public MetaVo(String title, String icon, Boolean noCache) {
this.title = title; this.title = title;
this.icon = icon; this.icon = icon;
this.noCache = noCache; this.noCache = noCache;
@ -49,7 +49,7 @@ public class MetaVo {
this.link = link; 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.title = title;
this.icon = icon; this.icon = icon;
this.noCache = noCache; this.noCache = noCache;

View File

@ -27,7 +27,7 @@ public class RouterVo {
/** /**
* 是否隐藏路由当设置 true 的时候该路由不会再侧边栏出现 * 是否隐藏路由当设置 true 的时候该路由不会再侧边栏出现
*/ */
private boolean hidden; private Boolean hidden;
/** /**
* 重定向地址当设置 noRedirect 的时候该路由在面包屑导航中不可被点击 * 重定向地址当设置 noRedirect 的时候该路由在面包屑导航中不可被点击

View File

@ -30,12 +30,12 @@ public class ButtonPermissionVo implements Serializable {
/** /**
* 是否显示 * 是否显示
*/ */
private boolean show; private Boolean show;
public ButtonPermissionVo() { public ButtonPermissionVo() {
} }
public ButtonPermissionVo(String code, boolean show) { public ButtonPermissionVo(String code, Boolean show) {
this.code = code; this.code = code;
this.show = show; this.show = show;
} }

View File

@ -177,7 +177,7 @@ public class FlowTaskVo implements Serializable {
/** /**
* 是否为申请人节点 * 是否为申请人节点
*/ */
private boolean applyNode; private Boolean applyNode;
/** /**
* 按钮权限 * 按钮权限

View File

@ -157,7 +157,7 @@ public class TestLeaveServiceImpl implements ITestLeaveService {
// 办理意见 // 办理意见
String message = Convert.toStr(params.get("message")); String message = Convert.toStr(params.get("message"));
} }
if (processEvent.isSubmit()) { if (processEvent.getSubmit()) {
testLeave.setStatus(BusinessStatusEnum.WAITING.getStatus()); testLeave.setStatus(BusinessStatusEnum.WAITING.getStatus());
} }
baseMapper.updateById(testLeave); baseMapper.updateById(testLeave);