using Yw.Model;
namespace HStation.Model
{
///
/// 产品映射
///
[SysType("assets_compressor_main_part_mapping")]
public class AssetsCompressorMainAndPartMapping : BaseModel, System.ICloneable
{
public AssetsCompressorMainAndPartMapping()
{ }
public AssetsCompressorMainAndPartMapping(AssetsCompressorMainAndPartMapping rhs)
{
this.PartID = rhs.PartID;
this.MainID = rhs.MainID;
this.ID = rhs.ID;
this.SeriesID = rhs.SeriesID;
}
public void Reset(AssetsCompressorMainAndPartMapping 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();
}
}
}