using Yw.Model; namespace HStation.Model { /// /// 业务站 /// [SysType("assets_pump_series_type_mapping")] public class AssetsPumpSeriesTypeMapping : BaseModel, 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; } public void Reset(AssetsPumpSeriesTypeMapping 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(); } } }