Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3
4 import com.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 }