using Yw.Entity;
namespace HStation.Entity
{
///
/// 泵产品
///
[SysType("assets_pump_part_main")]
[SugarTable("assets_pump_part_main")]
public class AssetsPumpPartMain : BaseEntity, ISorter, System.ICloneable
{
public AssetsPumpPartMain()
{ }
///
/// 泵系列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();
}
}
}