FIC_Solar/SolarPower/Models/AnalysisStationCombine.cs
2021-10-01 11:11:18 +08:00

37 lines
1.3 KiB
C#

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 double All_irradiance { get; set; }
public double Now_irradiance { get; set; }
}
public class ChartInput
{
public List<int> StationIds { get; set; }
public string Timerange { get; set; }
public int SeacrhType { get; set; }
}
public class Chartoutput
{
public double Irradiance { get; set; }
public double Temperature { get; set; }
public double KWH { get; set; }
public string Time { get; set; }
}
}