namespace Yw.Application { /// /// 泵曲线 /// public class PumpCurveDto { /// /// /// public PumpCurveDto() { } /// /// /// public PumpCurveDto(Model.PumpCurve rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.SourceWay = rhs.SourceWay; this.CreateMethod = rhs.CreateMethod; this.CoordParas = rhs.CoordParas; this.CurveExpress = new PumpCurveExpressDto(rhs.CurveInfo); this.ReliabilityStatus = rhs.ReliabilityStatus; this.CreateTime = rhs.CreateTime; this.CreateUserID = rhs.CreateUserID; this.CreateUserName = rhs.CreateUserName; this.UpdateTime = rhs.UpdateTime; this.UpdateUserID = rhs.UpdateUserID; this.UpdateUserName = rhs.UpdateUserName; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 来源方式 /// public eSourceWay SourceWay { get; set; } /// /// 创建方法 /// public string CreateMethod { get; set; } /// /// 坐标参数 /// public string CoordParas { get; set; } /// /// 曲线表达式 /// public PumpCurveExpressDto CurveExpress { get; set; } /// /// 可信度 /// public eReliabilityStatus ReliabilityStatus { get; set; } /// /// 录入时间 /// public DateTime InputTime { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 创建人id /// public long CreateUserID { get; set; } /// /// 创建人名称 /// public string CreateUserName { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 更新人id /// public long? UpdateUserID { get; set; } /// /// 更新人名称 /// public string UpdateUserName { get; set; } /// /// 说明 /// public string Description { get; set; } } }