using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.LampNBServer { public class ConfigItems { public ushort? collectStartTime { get; set; } //数据采集起始时间 0x10000104 0002 public ushort? collectCycle { get; set; } //数据采集间隔 0x10000105 public ushort? collectCnt { get; set; } //数据上报次数 0x10000106 public Channels elecMinAlarm { get; set; } //电流报警下限 0x10000900 public Channels elecMaxAlarm { get; set; } //电流报警上限 0x10000901 public Channels voltMinAlarm { get; set; } //电压报警下限 0x10000902 public Channels voltMaxAlarm { get; set; } //电压报警上限 0x10000903 public Channels channelOpenTime { get; set; } //各通道开启时间 0x10000201 public Channels channelCloseTime { get; set; } //各通道关闭时间 0x10000202 public byte? setParameters { get; set; } //调光参数 0x10000205 public Channels remoteControl { get; set; } //开关控制 0x50000001 public byte? dataRequest { get; set; } //数据查询 0x20000001 } }