| | |
| | | import com.qianwen.core.tool.node.INode; |
| | | |
| | | @ApiModel(value = "VisualCompTypeVo对象", description = "大屏组件分类") |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/visual/vo/VisualCompTypeVO.class */ |
| | | |
| | | public class VisualCompTypeVO implements INode<VisualCompTypeVO> { |
| | | @ApiModelProperty("分类名称") |
| | | @Size(max = 50, message = "分类名称长度不能超过50") |
| | |
| | | |
| | | public List<VisualCompTypeVO> getChildren() { |
| | | if (this.children == null) { |
| | | this.children = new ArrayList(); |
| | | this.children = new ArrayList<>(); |
| | | } |
| | | return this.children; |
| | | } |