41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_electrical_condition
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public List<electrical_conditionData> data { get; set; }
|
|
}
|
|
public class electrical_conditionData
|
|
{
|
|
public decimal? ToDay { get; set; }
|
|
public decimal? YearDay { get; set; }
|
|
public decimal? DayDency { get; set; }
|
|
|
|
public decimal? ThisMonth { get; set;}
|
|
public decimal? LastMonth { get; set; }
|
|
public decimal? MonthDency { get; set; }
|
|
|
|
public decimal? ThisYear { get; set; }
|
|
public decimal? LastYear { get; set; }
|
|
public decimal? YearDency { get; set; }
|
|
}
|
|
}
|