using Yw.Entity; namespace HStation.Entity { /// /// 类型 /// [SysType("assets_pump_type")] [SugarTable("assets_pump_type")] public class AssetsPumpType : BaseEntity, ISorter, System.ICloneable { /// /// /// public AssetsPumpType() { } /// /// /// public AssetsPumpType(AssetsPumpType 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 AssetsPumpType Clone() { return (AssetsPumpType)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }