12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapEntity.Dtos
- {
- /// <summary>
- /// 级联选择器数据实体
- /// </summary>
- 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<CascaderDto> Children { get; set; }
- }
- public class SelectDto<T>
- {
- public string Group { get; set; }
- public string Label { get; set; }
- public T Value { get; set; }
- public string Code { get; set; }
- }
- }
|