liusheng
2024-04-15 fdf1b9c1e4489a0c2615fa596268b2f71fad7b4c
smartor/src/main/java/com/smartor/domain/TreeNode.java
@@ -11,10 +11,10 @@
@ApiModel(value = "TreeNode", description = "节点树")
@Data
public class TreeNode {
    @ApiModelProperty(name = "节点名称")
    @ApiModelProperty(value = "节点名称")
    private String name;
    @ApiModelProperty(name = "子节点集合")
    @ApiModelProperty(value = "子节点集合")
    private List<TreeNode> children;
    public TreeNode(String name) {