40 lines
975 B
C#
40 lines
975 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_coal_monitoring
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public List<coal_monitoringData> data { get; set; }
|
|
}
|
|
public class coal_monitoringData
|
|
{
|
|
public int Amount { get; set; }
|
|
public List<coal_monitoring> data { get; set; }
|
|
}
|
|
public class coal_monitoring
|
|
{
|
|
public int SerialNumber { get; set; }
|
|
public string Name { get; set; }
|
|
public decimal? CoalConsumption { get; set; }
|
|
public decimal? CarbonEmission { get; set; }
|
|
public decimal? UnitCalorific { get; set; }
|
|
}
|
|
}
|