using SqlSugar; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace IStation.Entity { /// /// 字典值表 /// [SugarTable("sys_dict_data")] public class SysDictData : BaseEntity, ISorter, IUseStatus, System.ICloneable { /// /// /// public SysDictData() { } /// /// /// public SysDictData(SysDictData rhs) : base(rhs) { this.TypeID = rhs.TypeID; this.Value = rhs.Value; this.Code = rhs.Code; this.SortCode = rhs.SortCode; this.UseStatus = rhs.UseStatus; this.Description = rhs.Description; } /// /// 字典类型Id /// public long TypeID { get; set; } /// /// 值 /// public string Value { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 排序 /// public int SortCode { get; set; } /// /// 使用状态 /// public int UseStatus { get; set; } /// /// 备注 /// public string Description { get; set; } /// /// /// public SysDictData Clone() { return (SysDictData)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }