37 lines
803 B
C#
37 lines
803 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_plant_coal
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public List<plant_coalData> data { get; set; }
|
|
}
|
|
public class plant_coalData
|
|
{
|
|
public decimal? Value { get; set; }
|
|
public List<plant_coal> data { get; set; }
|
|
}
|
|
public class plant_coal
|
|
{
|
|
public string time { get; set; }
|
|
public decimal? CoalConsumption { get; set; }
|
|
}
|
|
}
|