Commit de1fafde by xub

format

parent 034d706c
......@@ -41,9 +41,9 @@ public class GoodsCordVO {
*/
private String specTagChain;
/**
* 是否叶子节点 0:不是叶子节点 1:是叶子节点
* 是否叶子节点 false:不是叶子节点 true:是叶子节点
*/
private Integer leafNodeFlag;
private Boolean leafNodeFlag;
/**
* 是否在小程序上显示 0否 1是
......@@ -53,10 +53,7 @@ public class GoodsCordVO {
* 排序
*/
private Integer sort;
/**
* 是否有子类
*/
private Boolean nextChild;
public Long getSpecCordId() {
return specCordId;
......@@ -114,11 +111,11 @@ public class GoodsCordVO {
this.specTagChain = specTagChain;
}
public Integer getLeafNodeFlag() {
public Boolean getLeafNodeFlag() {
return leafNodeFlag;
}
public void setLeafNodeFlag(Integer leafNodeFlag) {
public void setLeafNodeFlag(Boolean leafNodeFlag) {
this.leafNodeFlag = leafNodeFlag;
}
......@@ -138,11 +135,4 @@ public class GoodsCordVO {
this.sort = sort;
}
public Boolean getNextChild() {
return nextChild;
}
public void setNextChild(Boolean nextChild) {
this.nextChild = nextChild;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment