| | |
| | | import java.util.List; |
| | | import com.qianwen.smartman.modules.system.vo.ChartTreeSelect; |
| | | |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/visual/vo/WorkStationTreeVO.class */ |
| | | |
| | | public class WorkStationTreeVO implements ChartTreeSelect<WorkStationTreeVO> { |
| | | private static final long serialVersionUID = 7291936792088408178L; |
| | | private String title; |
| | | private Long id; |
| | | private Long parentId; |
| | | private Boolean isGroup; |
| | | private List<WorkStationTreeVO> children = new ArrayList(); |
| | | private List<WorkStationTreeVO> children = new ArrayList<>(); |
| | | @JsonInclude(JsonInclude.Include.NON_EMPTY) |
| | | private Boolean hasChildren; |
| | | |