houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3
4 import com.iailab.netsdk.lib.NetSDKLib;
5
6 /**
7  * @author 260611
8  * @description 上报的mini雷达报警点信息
9  * @date 2022/08/04 17:03:46
10  */
11 public class NET_MINI_RADAR_NOTIFY_ALARMPOINTINFO extends NetSDKLib.SdkStructure {
12     /**
13      * 订阅的SID
14      */
15     public int nSID;
16     /**
17      * mini雷达报警点的数量
18      */
19     public int nAlarmPointNum;
20     /**
21      * mini雷达报警点信息
22      */
23     public NET_MINI_RADAR_ALARMPOINT_INFO[] stuAlarmPoint = new NET_MINI_RADAR_ALARMPOINT_INFO[64];
24     /**
25      * 保留字节
26      */
27     public byte[] szReserved = new byte[256];
28
29     public NET_MINI_RADAR_NOTIFY_ALARMPOINTINFO() {
30         for (int i = 0; i < stuAlarmPoint.length; i++) {
31             stuAlarmPoint[i] = new NET_MINI_RADAR_ALARMPOINT_INFO();
32         }
33     }
34
35 }