using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace SolarPower.Models { public class AnalysisStationCombine { public double Now_kwh { get; set; }//現發電量 public double All_kwh { get; set; }//總發電量 public double Now_money { get; set; }//現發電金額 public double All_money { get; set; }//總發電金額 public double Now_KWH_KWP { get; set; }//現平均KWH_KWP public double All_KWH_KWP { get; set; }//總平均KWH_KWP public double Now_PR { get; set; }//現平均PR public double All_PR { get; set; }//總平均PR public double Now_Carbon { get; set; }//現減炭 public double All_Carbon { get; set; }//總減炭 } public class ChartInput { public List StationIds { get; set; } public string Timerange { get; set; } public int SeacrhType { get; set; } } }