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.
30 lines
1.1 KiB
30 lines
1.1 KiB
2 years ago
|
using Newtonsoft.Json.Linq;
|
||
|
|
||
|
namespace JiLinApp.Docking.FenceAlarm;
|
||
|
|
||
|
public class UdpAlarmHostMessage
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public string AlarmTime { get; set; }//报警时间
|
||
|
public string CID { get; set; }//CID代码
|
||
|
|
||
|
/*设备信息*/
|
||
|
public int DeviceID { get; set; }//设备唯一ID
|
||
|
public int ChannelNum { get; set; }//防区号
|
||
|
public int SubChannelNum { get; set; }//子防区号
|
||
|
public string Ip { get; set; }//设备IP
|
||
|
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; }
|
||
|
}
|