FIC_Solar/solarApp/Model/station_model.cs

72 lines
2.2 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 totalMoney { get; set; }
public double CARBON { get; set; }
public double todayCarbon { get; set; }
public double totalCarbon { 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; }
public int count { get; set; }
}
public class station_list
{
public string id { get; set; }
public string CompanyID { get; set; }
public string SiteID { get; set; }
public string SiteDB { get; set; }
public string SiteName { get; set; }
}
}