using Yw.Entity; namespace IStation.Entity { /// /// 陈行 /// [SugarTable("ChengHang")] public class ChengHang : BaseEntity, ISorter, System.ICloneable { /// /// /// public ChengHang() { } /// /// /// public ChengHang(ChengHang rhs) : base(rhs) { this.Name = rhs.Name; this.Deduction = rhs.Deduction; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 名称 /// public string Name { get; set; } /// /// 扣分 /// public int Deduction { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public ChengHang Clone() { return (ChengHang)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }