using Newtonsoft.Json; namespace Vo { /// /// 详情 /// public class SysDictItemQueryVo { /// /// 编号 /// 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 string createBy { get; set; } /// /// 修改人 /// public string updateBy { get; set; } /// /// 创建时间 /// public DateTime? createTime { get; set; } /// /// 更新时间 /// public DateTime? updateTime { get; set; } /// /// 备注信息 /// public string remarks { get; set; } } }