using DataServer.api; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer { public class get_realtime_data { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } /// /// 数据 /// public List data { get; set; } } public class realtime_dataData { public decimal? P { get; set; } /// /// 负载率 /// public decimal? LoadRate { get; set; } /// /// 变损率 /// public decimal? ConversionRate { get; set; } public string DeviceState { get; set; } } }