using Yw.DiagramFile; namespace HStation.ReportFile { /// /// 模拟工况报告ViewModel /// public class SimulationWorkingReportViewModel { /// /// 报告类型 /// public string ReportType { get; set; } /// /// 基本信息 /// public SimulationReportInfoItemViewModel Info { get; set; } /// /// 水泵列表 /// public List Pumps { get; set; } /// /// 工况信息 /// public SimulationReportWorkingItemViewModel Working { get; set; } /// /// 泵曲线信息 /// public PumpChartViewModel PumpChart { get; set; } } }