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.
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
namespace JiLinApp.Docking.FenceAlarm;
|
|
|
|
|
|
|
|
public class UdpAlarmHostMessage
|
|
|
|
{
|
|
|
|
public string AlarmTime { get; set; }//报警时间
|
|
|
|
public string CID { get; set; }//CID代码
|
|
|
|
|
|
|
|
/*设备信息*/
|
|
|
|
public int DeviceId { get; set; }//设备唯一ID
|
|
|
|
public string Ip { get; set; }//设备IP
|
|
|
|
public int SectorId { get; set; }//防区号
|
|
|
|
public int SubSectorId { get; set; }//子防区号
|
|
|
|
public int GroupId { get; set; }//分组号,报警主机可划入不同组
|
|
|
|
public int UserId { get; set; }//用户ID,指主机名称,有多台主机可以通过此名称区分
|
|
|
|
public int LinkOut { get; set; }//联动输出
|
|
|
|
public string ExtendArgs { get; set; }//扩展参数
|
|
|
|
|
|
|
|
/*CID信息*/
|
|
|
|
public string AlarmLevel { get; set; }//报警级别
|
|
|
|
public string AlarmContent { get; set; }//报警内容
|
|
|
|
public string AlarmRemarks { get; set; }//报警备注
|
|
|
|
public string AlarmType { get; set; }//报警类型
|
|
|
|
|
|
|
|
/*联动信息*/
|
|
|
|
public bool IsLinked { get; set; }//是否有联动信息
|
|
|
|
public JArray Linklist { get; set; }
|
|
|
|
}
|