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.

20 lines
585 B

using Newtonsoft.Json.Linq;
namespace JiLinApp.Docking.VibrateAlarm;
public class TcpAlarmHostMessage
{
public int Id { get; set; }
public string AlarmId { get; set; }//CID代码
public string AlarmTime { get; set; }//报警时间
/*设备信息*/
public int DeviceID { get; set; }//设备唯一ID
public string ChannelNum { get; set; }//防区号
public string Mode { get; set; }
public string Sensitivity { get; set; }
/*联动信息*/
public bool IsLinked { get; set; }//是否有联动信息
public JArray Linklist { get; set; }
}