using System; using System.Collections.Generic; using System.Linq; using System.Security; using System.Text; using System.Threading.Tasks; namespace DataServer.api { public class get_distribution_monitoring { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } /// /// 数据 /// public List data { get; set; } } public class distribution_monitoringData { public int Amount { get; set; } public List data { get; set; } } public class distribution_monitoring { public int SerialNumber { get; set; } public string DistributionName { get; set; } public decimal? RealTimeLoad { get; set; } public decimal? ElectricityConsumption { get; set; } public string DeviceState { get; set; } } }