using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataService.api { public class get_electricity_rate { public int code { get; set; } public string msg { get; set; } public List data { get; set; } } public class electricity_rateData { public string time { get; set; } /// /// 电费 /// public decimal? Electricity { get; set; } /// /// 销售电价 /// public decimal? Electrovalence { get; set; } } }