You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
549 B
19 lines
549 B
using Newtonsoft.Json.Linq;
|
|
|
|
namespace JiLinApp.Docking.VibrateAlarm;
|
|
|
|
public class TcpAlarmHostMessage
|
|
{
|
|
public string AlarmTime { get; set; }//报警时间
|
|
public string CID { get; set; }//CID代码
|
|
|
|
/*设备信息*/
|
|
public int DeviceID { get; set; }//设备唯一ID
|
|
public string SensorAddr { get; set; }//防区号
|
|
public string Mode { get; set; }
|
|
public string Sensitivity { get; set; }
|
|
|
|
/*联动信息*/
|
|
public bool IsLinked { get; set; }//是否有联动信息
|
|
public JArray Linklist { get; set; }
|
|
}
|