using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static IStation.Model.Product; namespace IStation.Application { /// /// 更新通讯设备input /// public class UpdateCommunicationInput { /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 编号 /// public string NO { get; set; } /// /// 型号 /// public string Code { get; set; } /// /// 厂商 /// public long ManufacturerID { get; set; } /// /// 服务器IP /// public string ServerIP { get; set; } /// /// 服务端口 /// public int ServerPort { get; set; } /// /// 设备编码 /// public string SpecialNO { get; set; } /// /// 注册码 /// public string RegisterCode { get; set; } /// /// 心跳包 /// public string Heartbeat { get; set; } /// /// 心跳间隔 (秒) /// public int HeartInterval { get; set; } /// /// 波特率 /// public int BaudRate { get; set; } /// /// 通信反馈 /// public bool FeedBack { get; set; } /// /// 附加属性 /// public Dictionary PropsParas { get; set; } /// /// 巡检周期 /// public eInspectionSchedule InspectionSchedule { get; set; } /// /// 终端标识 /// public string TerminalId { get; set; } /// /// 标签 /// public string TagName { get; set; } /// /// 说明 /// public string Description { get; set; } } }