using Yw.Model;
|
|
namespace HStation.Model
|
{
|
/// <summary>
|
/// 泵产品
|
/// </summary>
|
[SysType("assets_pump_part_main")]
|
public class AssetsPumpPartMain : BaseModel, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpPartMain()
|
{ }
|
|
public AssetsPumpPartMain(AssetsPumpPartMain rhs)
|
{
|
this.Name = rhs.Name;
|
this.NO = rhs.NO;
|
this.ID = rhs.ID;
|
this.Code = rhs.Code;
|
this.SeriesID = rhs.SeriesID;
|
this.MainID = rhs.MainID;
|
this.SortCode = rhs.SortCode;
|
}
|
|
public void Reset(AssetsPumpPartMain rhs)
|
{
|
this.Name = rhs.Name;
|
this.NO = rhs.NO;
|
this.ID = rhs.ID;
|
this.Code = rhs.Code;
|
this.SeriesID = rhs.SeriesID;
|
this.SortCode = rhs.SortCode;
|
this.MainID = rhs.MainID;
|
}
|
|
/// <summary>
|
/// 产品编号
|
/// </summary>
|
public string NO { get; set; }
|
|
/// <summary>
|
/// 产品名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 产品图号
|
/// </summary>
|
public string Code { get; set; }
|
|
/// <summary>
|
/// 泵系列ID
|
/// </summary>
|
public long SeriesID { get; set; }
|
|
/// <summary>
|
/// 泵型号ID
|
/// </summary>
|
public long MainID { get; set; }
|
|
/// <summary>
|
/// 排序码
|
/// </summary>
|
public int SortCode { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpMain Clone()
|
{
|
return (AssetsPumpMain)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|