You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace IOT.Show.Model
|
|
|
|
|
{
|
|
|
|
|
public class T_Led_Data
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 测控点名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string monitorName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 显示标题
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string title { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Ip地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ip { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 温度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string tempreture { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 湿度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string humidity { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 照度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string illuminance { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 采集时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string collectTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|