namespace Yw.Application { /// /// 添加泵曲线 /// public class AddPumpCurveInput { /// /// 名称 /// [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; } } }