using Yw.Entity;
namespace HStation.Entity
{
///
/// 泵产品映射
///
[SysType("assets_pump_main_part_mapping")]
[SugarTable("assets_pump_main_part_mapping")]
public class AssetsPumpMainAndPartMap : BaseEntity, System.ICloneable
{
public AssetsPumpMainAndPartMap()
{ }
///
/// 泵系列ID
///
public long SeriesID { get; set; }
///
/// 泵型号ID
///
public long PumpID { get; set; }
///
/// 泵产品ID
///
public long PumpPartID { get; set; }
///
///
///
public AssetsPumpMain Clone()
{
return (AssetsPumpMain)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}