using Yw.Entity;
|
|
namespace HStation.Entity
|
{
|
/// <summary>
|
/// 类型
|
/// </summary>
|
[SysType("assets_pump_type_series_mapping")]
|
[SugarTable("assets_pump_type_series_mapping")]
|
public class AssetsPumpTypeSeriesMap : BaseEntity, ISorter, System.ICloneable
|
{ /// <summary>
|
///
|
/// </summary>
|
public AssetsPumpTypeSeriesMap()
|
{ }
|
|
/// <summary>
|
///
|
/// </summary>
|
public AssetsPumpTypeSeriesMap(AssetsPumpTypeSeriesMap rhs) : base(rhs)
|
{
|
this.ID = rhs.ID;
|
this.PumpSeriesID = rhs.PumpSeriesID;
|
this.PumpTypeID = rhs.PumpTypeID;
|
this.SortCode = rhs.SortCode;
|
}
|
|
/// <summary>
|
/// 泵型号ID
|
/// </summary>
|
public long PumpSeriesID { get; set; }
|
|
/// <summary>
|
/// 类型ID
|
/// </summary>
|
public long PumpTypeID { get; set; }
|
|
/// <summary>
|
/// 排序码
|
/// </summary>
|
public int SortCode { get; set; }
|
|
public AssetsPumpType Clone()
|
{
|
return (AssetsPumpType)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
}
|