| | |
| | | /// <summary> |
| | | /// 查询数据字典选择器 |
| | | /// </summary> |
| | | [Resource([EnumResourceController.Dictionary], AllowAnonymous = false)] |
| | | [Resource([EnumResourceController.Dictionary], AllowAnonymous = true)] |
| | | public class GetDictionaryDataSelectQuery : SelectQuery<Guid, GetDictionaryDataSelectQueryResultOption> |
| | | { |
| | | /// <summary> |
| | |
| | | /// 上级Id |
| | | /// </summary> |
| | | public Guid? ParentId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 关键字 |
| | | /// </summary> |
| | | public string Keywords { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 查询所有 |
| | | /// </summary> |
| | | public bool All { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 最大深度 |
| | | /// </summary> |
| | | public int? MaxDeep { get; set; } |
| | | } |
| | | |
| | | public class GetDictionaryDataSelectQueryResultOption |