using System; namespace Permission.Service.DTO.ApiModels { public class SysDictDetailApiViewModel { public int Id { get; set; } public string GuidId { get; set; } /// /// 字典类型 /// public int SysDictId { get; set; } /// /// 上级编号 /// public string ParentId { get; set; } /// /// 编码 /// public string ItemCode { get; set; } /// /// 明细名称 /// public string ItemName { get; set; } /// /// 值 /// public string ItemValue { get; set; } /// /// 是否默认 /// public int? IsDefault { get; set; } public int? SortCode { get; set; } public bool? DeleteMark { get; set; } public bool? IsEnabled { get; set; } public string CreateUser { get; set; } public DateTime? CreateTime { get; set; } public string ModifyUser { get; set; } public DateTime? ModifyTime { get; set; } public string Remark { get; set; } } }