69 lines
2.1 KiB
C#
69 lines
2.1 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; }
|
|
}
|
|
|
|
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; }
|
|
}
|
|
}
|