using Yw.Entity;
|
|
namespace HStation.Entity
|
{
|
/// <summary>
|
/// 换热器产品
|
/// </summary>
|
[SysType("assets_exchanger_part_main")]
|
[SugarTable("assets_exchanger_part_main")]
|
public class AssetsExchangerPartMain : BaseEntity, ISorter, System.ICloneable
|
{
|
public AssetsExchangerPartMain()
|
{ }
|
|
/// <summary>
|
/// 系列ID
|
/// </summary>
|
public long SeriesID { get; set; }
|
|
/// <summary>
|
/// 产品编号
|
/// </summary>
|
public string NO { get; set; }
|
|
/// <summary>
|
/// 产品名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 产品图号
|
/// </summary>
|
public string Code { get; set; }
|
|
/// <summary>
|
/// 排序码
|
/// </summary>
|
public int SortCode { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpPartMain Clone()
|
{
|
return (AssetsPumpPartMain)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|