using Yw.Model; namespace HStation.Model { /// /// 水池型号产品映射 /// [SysType("assets-tank-main-part-mapping")] public class AssetsTankMainAndPartMapping : BaseModel , System.ICloneable { /// /// /// public AssetsTankMainAndPartMapping() { } /// /// /// public AssetsTankMainAndPartMapping(AssetsTankMainAndPartMapping rhs) : base(rhs) { this.SeriesID=rhs.SeriesID; this.MainID=rhs.MainID; this.PartID=rhs.PartID; } /// /// /// public void Reset(AssetsTankMainAndPartMapping rhs) { this.ID=rhs.ID; this.SeriesID=rhs.SeriesID; this.MainID=rhs.MainID; this.PartID=rhs.PartID; } /// /// 系列ID /// public long SeriesID { get; set; } /// /// 型号ID /// public long MainID { get; set; } /// /// 产品ID /// public long PartID { get; set; } /// /// /// public AssetsTankMainAndPartMapping Clone() { return (AssetsTankMainAndPartMapping)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }