using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataServer.api
{
public class get_general_catalogue
{
///
/// 返回码
///
public int code { get; set; }
///
/// 返回说明
///
public string msg { get; set; }
///
/// 数据
///
public List data { get; set; }
}
public class general_catalogueData
{
public decimal? TotalRelease { get; set; }
public decimal? CarbonOffset { get; set;}
public decimal? CarbonReduction { get; set; }
public decimal? Electricity { get; set;}
public decimal? NaturalGas { get; set;}
}
}