1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.netsdk.lib.structure;
 
 
import com.netsdk.lib.NetSDKLib;
 
/**
 * @author 260611
 * @description Mini雷达探测参数配置, 对应配置项 NET_EM_CFG_MINIRADAR_DECT_PARAM
 * @date 2022/08/04 10:13:29
 */
public class NET_CFG_MINIRADAR_DECT_PARAM_INFO extends NetSDKLib.SdkStructure {
    /**
     * 结构体大小
     */
    public int dwSize;
    /**
     * 灵敏度
     */
    public int nSensitivity;
    /**
     * 上报间隔,单位秒
     */
    public int nReportInterval;
 
    public NET_CFG_MINIRADAR_DECT_PARAM_INFO() {
        this.dwSize = this.size();
    }
 
}