liusheng
2024-10-21 af396db5b1e6dcbb53879af52bd682b4a7e82664
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) {