| | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import lombok.Data; |
| | | import org.springblade.modules.category.dto.CategoryDTO; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | |
| | | private List<TreeStringNode> children = new ArrayList<>(); |
| | | |
| | | /** |
| | | * 标签节点 |
| | | */ |
| | | private List<CategoryDTO> categoryList; |
| | | |
| | | /** |
| | | * 是否有子孙节点 |
| | | */ |
| | | @JsonInclude(JsonInclude.Include.NON_EMPTY) |
| | | private Boolean hasChildren; |
| | | /** |
| | | * 无诈类型 |
| | | */ |
| | | private Integer noExplosionCategory; |
| | | } |