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雷达探测参数配置, 对应配置项 NET_EM_CFG_MINIRADAR_DECT_PARAM
9  * @date 2022/08/04 10:13:29
10  */
11 public class NET_CFG_MINIRADAR_DECT_PARAM_INFO extends NetSDKLib.SdkStructure {
12     /**
13      * 结构体大小
14      */
15     public int dwSize;
16     /**
17      * 灵敏度
18      */
19     public int nSensitivity;
20     /**
21      * 上报间隔,单位秒
22      */
23     public int nReportInterval;
24
25     public NET_CFG_MINIRADAR_DECT_PARAM_INFO() {
26         this.dwSize = this.size();
27     }
28
29 }