using Yw.Entity;
namespace HStation.Entity
{
///
/// 产品映射
///
[SysType("assets_compressor_main_part_mapping")]
[SugarTable("assets_compressor_main_part_mapping")]
public class AssetsCompressorMainAndPartMap : BaseEntity, System.ICloneable
{
public AssetsCompressorMainAndPartMap()
{ }
///
/// 系列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();
}
}
}