Commit 1d187edd by xub

添加是否有子类标志

parent 6adf9bd7
......@@ -82,6 +82,11 @@ public class CategoryVO implements Serializable {
*/
private Boolean isSelected;
/**
* ture代表有没有子类 false代表有
*/
private Boolean nextChild;
public Long getSpecCategoryId() {
return specCategoryId;
}
......@@ -193,4 +198,13 @@ public class CategoryVO implements Serializable {
public void setSelected(Boolean selected) {
isSelected = selected;
}
public Boolean getNextChild() {
return nextChild;
}
public void setNextChild(Boolean nextChild) {
this.nextChild = nextChild;
}
}
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