using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api { public class get_day_coal { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } /// /// 数据 /// public List data { get; set; } } public class day_coalData { public decimal? CoalValue { get; set; } public List data { get; set; } } public class day_coal { public string time { get; set; } public decimal? T { get; set; } } }