liusheng
2024-04-19 111c93ba533e13d9b47660c1e68ab1f9a23cfb68
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) {