using Yw.Model;
namespace HStation.Model
{
///
/// 泵属性值
///
[SysType("xhs-pumppropcontent")]
[SugarTable("xhs-pumppropcontent")]
public class PumpPropContent : BaseModel, System.ICloneable
{
public PumpPropContent()
{ }
public PumpPropContent(PumpPropContent rhs)
{
this.SeriesID = rhs.SeriesID;
this.PropID = rhs.PropID;
this.ID = rhs.ID;
this.PartID = rhs.PartID;
this.PropValue = rhs.PropValue;
}
public void Reset(PumpPropContent rhs)
{
this.SeriesID = rhs.SeriesID;
this.PropID = rhs.PropID;
this.ID = rhs.ID;
this.PartID = rhs.PartID;
this.PropValue = rhs.PropValue;
}
///
/// 泵系列ID
///
public long SeriesID { get; set; }
///
/// 泵型号ID
///
public long MainID { get; set; }
///
/// 泵产品ID
///
public long PartID { get; set; }
///
/// 属性ID
///
public long PropID { get; set; }
///
/// 属性值
///
public string PropValue { get; set; }
///
///
///
public PumpMain Clone()
{
return (PumpMain)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}