using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataService.api { public class get_carbon_overview { public int code { get; set; } public string msg { get; set; } public List data { get; set; } } public class carbon_overviewData { /// /// 总排放量 /// public decimal? TotalRelease { get; set; } /// /// 碳抵消量 /// public decimal? CarbonOffset { get; set; } /// /// 碳减排量 /// public decimal? CarbonReduction { get; set;} } }