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 : 雷达设备信息
9  * @since : Created in 2022/02/11 10:22
10  */
11
12 public class NET_RADAR_DEVICE_INFO extends NetSDKLib.SdkStructure {
13     /**
14      * 协议类型
15      */
16     public byte[] szProtocalType = new byte[32];
17     /**
18      * 雷达设备IP
19      */
20     public byte[] szRadarIP = new byte[32];
21     /**
22      * 设备类型
23      */
24     public byte[] szDeviceType = new byte[32];
25     /**
26      * 设备名称
27      */
28     public byte[] szDeviceName = new byte[32];
29     /**
30      * Radar模块版本号
31      */
32     public byte[] szRadarVer = new byte[16];
33     /**
34      * 用户名
35      */
36     public byte[] szUserName = new byte[128];
37     /**
38      * 密码
39      */
40     public byte[] szPassWord = new byte[32];
41     /**
42      * 服务端口号
43      */
44     public int nPort;
45     /**
46      * 经度, 用整型传输, 放大1000000倍, 小数点后6位有效, 不足6位用0补齐, 例如120125400代表120.1254
47      */
48     public int nLongitude;
49     /**
50      * 纬度, 用整型传输, 放大1000000倍, 小数点后6位有效, 不足6位用0补齐, 例如120125400代表120.1254
51      */
52     public int nLatitude;
53     /**
54      * 雷达地图朝向角, 放大100倍, 例如112897, 实际是128.97度
55      */
56     public int nAngle;
57     /**
58      * 保留字节
59      */
60     public byte[] bReserved = new byte[1024];
61 }