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