DongYing/DataServer/api/EnergyEfficiency/get_device_operation_respon...

37 lines
920 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataServer.api.EnergyEfficiency
{
/// <summary>
/// 获取设备运行情况接口响应实体
/// </summary>
public class get_device_operation_response
{
/// <summary>
/// 返回码
/// </summary>
public int code { get; set; }
/// <summary>
/// 返回说明
/// </summary>
public string msg { get; set; }
/// <summary>
/// 数据
/// </summary>
public List<device_operation_response> data { get; set; }
}
public class device_operation_response
{
public string SystematicName { get; set; }
public int SystematicState { get; set; }
public string InstrumentAddress { get; set; }
public string InstrumentType { get; set; }
}
}