mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
update 优化返回vo的boolean类型统一使用包装类
This commit is contained in:
@ -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