namespace Yw.Application
{
///
///
///
public class PumpCurveMappingDto
{
///
///
///
public PumpCurveMappingDto() { }
///
///
///
public PumpCurveMappingDto(Model.PumpCurveMapping rhs)
{
this.ID = rhs.ID;
this.PumpID = rhs.PumpID;
this.CurveID = rhs.CurveID;
this.OtherName = rhs.OtherName;
this.IsWorking = rhs.IsWorking;
this.SortCode = rhs.SortCode;
}
///
/// id
///
public long ID { get; set; }
///
/// 泵 id
///
public long PumpID { get; set; }
///
/// 曲线 id
///
public long CurveID { get; set; }
///
/// 别名
///
public string OtherName { get; set; }
///
/// 工作曲线
///
public bool IsWorking { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
}
}