| | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import lombok.Data; |
| | | import org.springblade.modules.category.dto.CategoryLabelDTO; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | |
| | | private Integer relationship; |
| | | |
| | | /** |
| | | * 是否九小场所 |
| | | */ |
| | | private Integer isNine; |
| | | |
| | | /** |
| | | * 是否阵地 |
| | | */ |
| | | private Integer isFront; |
| | | |
| | | /** |
| | | * 排序 |
| | | */ |
| | | private Integer sort; |
| | | |
| | | /** |
| | | * 父节点ID |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | |
| | | * 子孙节点 |
| | | */ |
| | | private List<TreeStringNode> children = new ArrayList<>(); |
| | | |
| | | /** |
| | | * 标签节点 |
| | | */ |
| | | private List<CategoryLabelDTO> categoryLabelList; |
| | | |
| | | /** |
| | | * 是否有子孙节点 |