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 { /// /// 测控点名称 /// public string monitorName { get; set; } /// /// 显示标题 /// public string title { get; set; } /// /// Ip地址 /// public string ip { get; set; } /// /// 温度 /// public decimal tempreture { get; set; } /// /// 湿度 /// public decimal humidity { get; set; } /// /// 照度 /// public decimal illuminance { get; set; } /// /// 采集时间 /// public DateTime collectTime { get; set; } } }