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