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

@ -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;
}

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"));
}
if (processEvent.isSubmit()) {
if (processEvent.getSubmit()) {
testLeave.setStatus(BusinessStatusEnum.WAITING.getStatus());
}
baseMapper.updateById(testLeave);