FIC_Solar/SolarPower/Models/AnalysisStationCombine.cs
Kai 6ad6054bba 1. 即時資訊 and 合併電站圖表:增加模組溫度
2.Sensor 如有多個需修正為多個平均
3.合併電站:選擇電站改為跟交叉分析中的左側選單相同
4. bug fix
2021-08-05 17:12:38 +08:00

35 lines
1.2 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 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; }
}
}