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