using SensorHub.Servers.JsonFormat; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.Lamphouse { public class LamphouseConfigItemsJson { public string acqStart { get; set; }//采集开始时间 public short interval { get; set; }//采集间隔 public short times { get; set; }//采集次数 public short repeat { get; set; }//重传次数 public short thresh { get; set; } //电流阈值 public string Channel1TurnOnTime { get; set; } //通道1开灯时间 public string Channel1TurnOffTime { get; set; } //通道1关灯时间 } }