28 lines
700 B
C#
28 lines
700 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_system_energy
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<system_energyData> data { get; set; }
|
|
}
|
|
public class system_energyData
|
|
{
|
|
public decimal? DayPeak { get; set; }
|
|
public decimal? MonthPeak { get; set; }
|
|
public List<system_energy> data { get; set; }
|
|
}
|
|
public class system_energy
|
|
{
|
|
public decimal? This { get; set; }
|
|
public decimal? Last { get; set; }
|
|
public decimal? Year { get; set; }
|
|
}
|
|
}
|