36 lines
822 B
C#
36 lines
822 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_lighting_monitoring
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<lighting_monitoringData> data { get; set; }
|
|
}
|
|
public class lighting_monitoringData
|
|
{
|
|
/// <summary>
|
|
/// 总数
|
|
/// </summary>
|
|
public int Amount { get; set; }
|
|
/// <summary>
|
|
/// 亮灯
|
|
/// </summary>
|
|
public int Connection { get; set; }
|
|
/// <summary>
|
|
/// 灭灯
|
|
/// </summary>
|
|
public int Blackout { get; set; }
|
|
/// <summary>
|
|
/// 离线
|
|
/// </summary>
|
|
public int Offline { get; set; }
|
|
|
|
}
|
|
}
|