using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Calculation.PlanAna { /// /// 月计算结果 /// public class MonthCalcuResult { /// /// 月份 1-12 /// public int Month { get; set; } /// /// 供水量 m³ /// public double Qt { get; set; } /// /// 耗电量 kw /// public double Dt { get; set; } /// /// 千吨能耗 /// public double WP { get; set; } } }