|
|
@@ -10,6 +10,7 @@ public class CategoryVo {
|
|
|
private String iconUrl;
|
|
|
private String picUrl;
|
|
|
private String level;
|
|
|
+ private Integer pid;
|
|
|
private List<CategoryVo> children;
|
|
|
|
|
|
public List<CategoryVo> getChildren() {
|
|
|
@@ -75,4 +76,12 @@ public class CategoryVo {
|
|
|
public void setLevel(String level) {
|
|
|
this.level = level;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getPid() {
|
|
|
+ return pid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPid(Integer pid) {
|
|
|
+ this.pid = pid;
|
|
|
+ }
|
|
|
}
|