using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api { public class get_carbon_emission { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } /// /// 数据 /// public List data { get; set; } } public class carbon_emissionData { public string time { get; set; } /// /// 一次循环 /// public decimal? PrimaryCirculation { get; set; } /// /// 侧循环 /// public decimal? CollateralCirculation { get; set; } /// /// 地源 /// public decimal? TerrestrialSource { get; set; } } }