namespace HStation.Dto.Assets
|
{
|
public class AssetsPumpTypeSeriesMapDto
|
{
|
public AssetsPumpTypeSeriesMapDto()
|
{
|
}
|
|
public AssetsPumpTypeSeriesMapDto(Model.AssetsPumpSeriesTypeMapping rhs)
|
{
|
this.ID = rhs.ID;
|
this.SortCode = rhs.SortCode;
|
this.PumpSeriesID = rhs.SeriesID;
|
this.PumpTypeID = rhs.TypeID;
|
}
|
|
public long ID { get; set; }
|
|
/// <summary>
|
/// 泵型号ID
|
/// </summary>
|
public long PumpSeriesID { get; set; }
|
|
/// <summary>
|
/// 类型ID
|
/// </summary>
|
public long PumpTypeID { get; set; }
|
|
/// <summary>
|
/// 排序码
|
/// </summary>
|
public int SortCode { get; set; }
|
}
|
}
|