using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataServer.api
{
public class get_carbon_flux
{
///
/// 返回码
///
public int code { get; set; }
///
/// 返回说明
///
public string msg { get; set; }
///
/// 数据
///
public List data { get; set; }
}
public class carbon_fluxData
{
public string AggregateName { get; set; }
public decimal? AggregateValue { get; set; }
public List list { get; set; }
}
public class secondlevel
{
public string SecondName { get; set; }
public decimal? SecondValue { get; set; }
public List list { get; set; }
}
public class threelevel
{
public string ThreeName { get; set;}
public decimal? ThreeValue { get; set; }
}
}