using System; using System.ComponentModel.DataAnnotations; using Model.Base; namespace Dto { /// /// 修改 /// public class SysDictItemUpdateDto { /// /// 编号 /// public long id { get; set; } /// /// 字典ID /// public long dictId { get; set; } /// /// 字典项值 /// public string? itemValue { get; set; } /// /// 字典项名称 /// public string? label { get; set; } /// /// 字典类型 /// public string? dictType { get; set; } /// /// 字典项描述 /// public string? description { get; set; } /// /// 排序(升序) /// public int sortOrder { get; set; } /// /// 备注信息 /// public string? remarks { get; set; } } }