using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.Dtos { /// /// 级联选择器数据实体 /// public class CascaderDto { public int Id { get; set; } public string Key { get; set; } public string Title { get; set; } public string Label { get; set; } public string Value { get; set; } public bool? IsLeaf { get; set; } public bool? Disabled { get; set; } public bool? Group { get; set; } public IEnumerable Children { get; set; } } public class SelectDto { public string Group { get; set; } public string Label { get; set; } public T Value { get; set; } public string Code { get; set; } } }