using Newtonsoft.Json; namespace NewPdaSqlServer.Dto.Simple; /// /// 树形视图 - 用于Layui Tree组件渲染 /// public class TreeViewDto { /// /// 菜单项ID /// [JsonProperty("id")] public long Id { get; set; } /// /// 菜单显示名称 /// [JsonProperty("title")] public string? Title { get; set; } /// /// 菜单英文标识 /// [JsonProperty("field")] public string? Field { get; set; } /// /// 是否默认展开子节点 /// [JsonProperty("spread")] public bool Spread { get; set; } /// /// 子菜单列表 /// [JsonProperty("children")] public List? Children { get; set; } }