namespace Yw.Application
{
///
/// 更新泵曲线
///
public class UpdatePumpCurveInput
{
///
/// id
///
[Required, Range(1, long.MaxValue, ErrorMessage = "ID 必须大于0")]
public long ID { get; set; }
///
/// 名称
///
[Required]
public string Name { get; set; }
///
/// 来源方式
///
[Required]
public eSourceWay SourceWay { get; set; }
///
/// 创建方法
///
[Required]
public string CreateMethod { get; set; }
///
/// 坐标参数
///
public Dictionary CoordParas { get; set; }
///
/// 曲线信息
///
[Required]
public PumpCurveInfoModel CurveInfo { get; set; }
///
/// 可信度
///
[Required]
public eReliabilityStatus ReliabilityStatus { get; set; }
///
/// 录入时间
///
public DateTime InputTime { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}