using MediatR; 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])] public class SaveDictionaryCategoryCommand : SaveDataCommand { /// /// 编号 /// [MaxLength(128)] [Required] public string Code { get; set; } /// /// 名称 /// [MaxLength(128)] [Required] public string Name { get; set; } /// /// 字段名(逗号隔开) /// public string FieldNames { get; set; } /// /// 排序 /// public int Sort { get; set; } } }