using Yw.Model; namespace HStation.Model { /// /// 泵产品映射 /// [SysType("xhs-pumpmainandpartmap")] [SugarTable("xhs-pumpmainandpartmap")] public class PumpMainAndPartMap : BaseModel, System.ICloneable { public PumpMainAndPartMap() { } public PumpMainAndPartMap(PumpMainAndPartMap rhs) { this.PumpPartID = rhs.PumpPartID; this.PumpID = rhs.PumpID; this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; } public void Reset(PumpMainAndPartMap rhs) { this.PumpPartID = rhs.PumpPartID; this.PumpID = rhs.PumpID; this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; } /// /// 泵系列ID /// public long SeriesID { get; set; } /// /// 泵型号ID /// public long PumpID { get; set; } /// /// 泵产品ID /// public long PumpPartID { get; set; } public PumpMain Clone() { return (PumpMain)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }