| | |
| | | import com.qianwen.smartman.modules.system.entity.Dict; |
| | | |
| | | @ApiModel(value = "DictVO", description = "DictVO对象") |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/DictVO.class */ |
| | | |
| | | public class DictVO extends Dict implements INode<DictVO> { |
| | | private static final long serialVersionUID = 1; |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | |
| | | |
| | | public List<DictVO> getChildren() { |
| | | if (this.children == null) { |
| | | this.children = new ArrayList(); |
| | | this.children = new ArrayList<>(); |
| | | } |
| | | return this.children; |
| | | } |