package com.consum.base.pojo;
|
|
import com.consum.model.po.BaseCategory;
|
import com.walker.web.param.ParamRequest;
|
|
import java.util.List;
|
|
public class ProjectTreeResult extends ParamRequest {
|
List<ProjectTreeResult> children;
|
|
private Long id;
|
|
private String label;
|
|
public List<ProjectTreeResult> getChildren() {
|
return children;
|
}
|
|
public void setChildren(List<ProjectTreeResult> children) {
|
this.children = children;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getLabel() {
|
return label;
|
}
|
|
public void setLabel(String label) {
|
this.label = label;
|
}
|
|
public ProjectTreeResult() {
|
}
|
|
public ProjectTreeResult(BaseCategory baseCategory) {
|
this.id = baseCategory.getId();
|
this.label = baseCategory.getCategoryName();
|
}
|
}
|