FIC_Solar/solarApp/Model/station_model.cs
2021-08-05 02:42:34 +08:00

60 lines
1.8 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace solarApp.Model
{
public class raw_statino
{
// public string siteid { get; set; }
public string reportdate { get; set; }
public double KWH { get; set; }
public double TODAYKWH { get; set; }
public double TOTALKWH { get; set; }
public double PR { get; set; }
public double SOLARHOUR { get; set; }
public double kwhkwp { get; set; }
}
public class raw_station_day
{
// public string siteid { get; set; }
public string reportdate { get; set; }
public double KWH { get; set; }
public double TODAYKWH { get; set; }
public double TOTALKWH { get; set; }
public double PR { get; set; }
public double SOLARHOUR { get; set; }
public double kwhkwp { get; set; }
public int count { get; set; }
}
public class web_station_hour
{
// public string siteid { get; set; }
public string reportdate { get; set; }
public double KWH { get; set; }
public double TODAYKWH { get; set; }
public double TOTALKWH { get; set; }
public double PR { get; set; }
public double SOLARHOUR { get; set; }
public double kwhkwp { get; set; }
//public double MONEY { get; set; }
//public double TODAYMONEY { get; set; }
//public double CARBON { get; set; }
//public double TODAYCARBON { get; set; }
}
public class web_station_day
{
// public string siteid { get; set; }
public string reportdate { get; set; }
public double TODAYKWH { get; set; }
public double TOTALKWH { get; set; }
public double PR { get; set; }
public double SOLARHOUR { get; set; }
public double kwhkwp { get; set; }
}
}