using Yw.Model; namespace HStation.Model { /// /// 泵产品映射 /// [SysType("assets_pump_main_partmapping")] public class AssetsPumpMainAndPartMapping : BaseModel, System.ICloneable { public AssetsPumpMainAndPartMapping() { } public AssetsPumpMainAndPartMapping(AssetsPumpMainAndPartMapping rhs) { this.ID = rhs.ID; this.PartID = rhs.PartID; this.SeriesID = rhs.SeriesID; this.MainID = rhs.MainID; } public void Reset(AssetsPumpMainAndPartMapping rhs) { this.PartID = rhs.PartID; this.MainID = rhs.MainID; this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 型号ID /// public long MainID { get; set; } /// /// 产品ID /// public long PartID { get; set; } public AssetsPumpMain Clone() { return (AssetsPumpMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }