using Yw.Entity; namespace HStation.Entity { /// /// 类型 /// [SysType("assets_pump_series_type_mapping")] [SugarTable("assets_pump_series_type_mapping")] public class AssetsPumpSeriesTypeMapping : BaseEntity, ISorter, System.ICloneable { /// /// /// public AssetsPumpSeriesTypeMapping() { } /// /// /// public AssetsPumpSeriesTypeMapping(AssetsPumpSeriesTypeMapping rhs) : base(rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.TypeID = rhs.TypeID; this.SortCode = rhs.SortCode; } /// /// 型号ID /// public long SeriesID { get; set; } /// /// 类型ID /// public long TypeID { get; set; } /// /// 排序码 /// public int SortCode { get; set; } public AssetsPumpType Clone() { return (AssetsPumpType)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }