using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace IStation.Dto.DispatchAna { /// /// / /// public class CalcByFlowHead_Request { /// /// /// public class TargetRange { /// /// /// public string MinQ { get; set; } /// /// /// public string MaxQ { get; set; } } /// /// /// public class RunStatus { /// /// /// public long MachineID { get; set; } = 0; /// /// /// public int Status { get; set; } = -1; } /// /// /// public long CorpID { get; set; } /// /// /// public long StationID { get; set; } /// /// /// public double TargetQ { get; set; } /// /// /// public double TargetH { get; set; } /// /// /// public TargetRange Range { get; set; } /// /// /// public List RunStatusList { get; set; } /// /// 排序方法: 0 功率 1 流量间隔 /// public int SortType { get; set; } } /// /// / /// public class CalcByFlowPress_Request { /// /// /// public long CorpID { get; set; } /// /// /// public long StationID { get; set; } /// /// /// public double TargetQ { get; set; } /// /// /// public double OutletPress { get; set; } /// /// /// public double WaterLevel { get; set; } /// /// /// public CalcByFlowHead_Request.TargetRange Range { get; set; } /// /// /// public List RunStatusList { get; set; } /// /// 排序方法: 0 功率 1 流量间隔 /// public int SortType { get; set; } } /// /// 查看详细图表 /// internal class CurveItem { public int Type { get; set; }//0表示单泵曲线 1表示并联曲线 public string Name { get; set; } public List> PointQH { get; set; } public List> PointQP { get; set; } } }