package com.ruoyi.basic.entity.dto; import lombok.Data; import java.util.List; /** * 树选项通用返回结构体 */ @Data public class TreeSelectOption { private String value; private String label; private Long id; private List children; public TreeSelectOption(String value, String label, Long id, List children) { this.value = value; this.label = label; this.id = id; this.children = children; } public TreeSelectOption() {} }