using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.Dtos { public class TreeSelectDto { public string Title { get; set; } public object Key { get; set; } public bool IsLeaf { get; set; } public string Icon { get; set; } public IEnumerable Children { get; set; } public int ParentId { get; set; } = 0; #region ng-zorro-mobile 使用 public string Label { get; set; } public object Value { get; set; } #endregion } }