houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 雷达控制盒支持的协议能力信息
8  * @date 2021/9/26
9  */
10 public class NET_RADAR_PROTOCAL_CAP extends NetSDKLib.SdkStructure{
11      /**
12      *  是否支持切换协议能力
13      */
14     public boolean bSupport;
15
16     /**
17      *  支持的协议类型个数, 即szPtotoList 数组的有效元素个数
18      */
19     public int nProtocalNum;
20
21     /**
22      *  雷达控制盒支持的协议列表
23      */    
24     public PtotoListByteArr[] szPtotoList = (PtotoListByteArr[])new PtotoListByteArr().toArray(10);  
25
26     /**
27      *  经度,用整型传输,放大1000000倍,小数点后6位有效,不足6位用0补齐,例如120125400代表120.1254
28      */
29     public int nLongitude;
30
31     /**
32      *  纬度,用整型传输,放大1000000倍,小数点后6位有效,不足6位用0补齐,例如120125400代表120.1254
33      */
34     public int nLatitude;
35
36     /**
37      *  雷达地图朝向角,放大100倍,例如112897,实际是128.97度
38      */
39     public int nAngle;
40
41     /**
42      *  预留字节
43      */
44     public byte[] byReserved = new byte[1020];
45
46 }