using Yw.Model;
namespace HStation.Model
{
///
/// 换热器产品
///
[SysType("assets_compressor_part_main")]
public class AssetsCompressorPartMain : BaseModel, ISorter, System.ICloneable
{
public AssetsCompressorPartMain()
{ }
public AssetsCompressorPartMain(AssetsCompressorPartMain 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;
}
public void Reset(AssetsCompressorPartMain 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;
}
///
/// 系列ID
///
public long SeriesID { get; set; }
///
/// 产品编号
///
public string NO { get; set; }
///
/// 产品名称
///
public string Name { get; set; }
///
/// 产品图号
///
public string Code { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
///
///
public AssetsPumpPartMain Clone()
{
return (AssetsPumpPartMain)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}