mirror of https://github.com/jeecgboot/jeecg-boot
映射警告
parent
c5150baa69
commit
c868496b78
|
@ -22,7 +22,7 @@ public class TreeModel implements Serializable {
|
|||
|
||||
private String slotTitle;
|
||||
|
||||
private boolean isLeaf;
|
||||
private Boolean isLeaf;
|
||||
|
||||
private String icon;
|
||||
|
||||
|
@ -54,11 +54,11 @@ public class TreeModel implements Serializable {
|
|||
this.title = title;
|
||||
}
|
||||
|
||||
public boolean getIsLeaf() {
|
||||
public Boolean getIsLeaf() {
|
||||
return isLeaf;
|
||||
}
|
||||
|
||||
public void setIsLeaf(boolean isLeaf) {
|
||||
public void setIsLeaf(Boolean isLeaf) {
|
||||
this.isLeaf = isLeaf;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue