using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api { public class get_unit_exception { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } /// /// 数据 /// public List data { get; set; } } public class unit_exceptionData { public string UnitTime { get; set; } public List data { get; set; } } public class unit_exception { /// /// 正常 /// public int Normal { get; set; } /// /// 预警 /// public int Early { get; set; } /// /// 故障 /// public int Malfunction { get; set; } } }