40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using Org.BouncyCastle.Bcpg.OpenPgp;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_unit_consumption
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<unit_consumptionData> data { get; set; }
|
|
}
|
|
public class unit_consumptionData
|
|
{
|
|
/// <summary>
|
|
/// 水泥单位产品综合能耗
|
|
/// </summary>
|
|
public decimal? CementConsumption { get; set; }
|
|
/// <summary>
|
|
/// 水泥单位产品综合电耗
|
|
/// </summary>
|
|
public decimal? CementitiousElectricity { get; set; }
|
|
/// <summary>
|
|
/// 熟料单位产品综合能耗
|
|
/// </summary>
|
|
public decimal? ClinkerConsumption { get; set; }
|
|
/// <summary>
|
|
/// 熟料单位产品综合电耗
|
|
/// </summary>
|
|
public decimal? ClinkerElectricity { get; set; }
|
|
/// <summary>
|
|
/// 熟料单位产品综合煤耗
|
|
/// </summary>
|
|
public decimal? ClinkerCoal { get; set; }
|
|
}
|
|
}
|