using Yw.Entity; namespace HStation.Entity { /// /// 类型 /// [SysType("xhs_pumptype")] [SugarTable("xhs_pumptype")] public class PumpType : BaseEntity, ISorter, System.ICloneable { /// /// /// public PumpType() { } /// /// /// public PumpType(PumpType rhs) : base(rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.Description = rhs.Description; this.BelongTypeID = rhs.BelongTypeID; this.SortCode = rhs.SortCode; } /// /// 名称 /// public string Name { get; set; } /// /// 所属类型ID /// public long BelongTypeID { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } public PumpType Clone() { return (PumpType)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }