liusheng
2024-11-22 5389773b2d1ae86daec68b00f67c3682dc907e01
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) {