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
|
{
|
/// <summary>
|
/// 查询数据字典类别选择器数据
|
/// </summary>
|
[Resource([EnumResourceController.Dictionary], AllowAnonymous = false)]
|
public class GetDictionaryCategorySelectQuery : SelectQuery<Guid, GetDictionaryCategorySelectQueryOption>
|
{
|
}
|
|
/// <summary>
|
/// 查询数据字典类别选择器数据-结果-选项
|
/// </summary>
|
public class GetDictionaryCategorySelectQueryOption
|
{
|
/// <summary>
|
/// Id
|
/// </summary>
|
public Guid Id { get; set; }
|
|
/// <summary>
|
/// 编号
|
/// </summary>
|
public string Code { get; set; }
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 字段名(逗号隔开)
|
/// </summary>
|
public string FieldNames { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
public string Remark { get; set; }
|
}
|
}
|