using MediatR; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 查询数据字典类别选择器数据 /// [Resource([EnumResourceController.Dictionary], AllowAnonymous = true)] public class GetDictionaryCategorySelectQuery : SelectQuery { } /// /// 查询数据字典类别选择器数据-结果-选项 /// public class GetDictionaryCategorySelectQueryOption { /// /// Id /// public Guid Id { get; set; } /// /// 编号 /// public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 字段名(逗号隔开) /// public string FieldNames { get; set; } /// /// 备注 /// public string Remark { get; set; } } }