Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
30
31
32
33
34
35
36
37
38
package com.iailab.netsdk.lib.structure;/**
 * @author 47081
 * @descriptio
 * @date 2020/11/9
 * @version 1.0
 */
 
import com.iailab.netsdk.lib.NetSDKLib;
import com.iailab.netsdk.lib.Utils;
 
/**
 * @author 47081
 * @version 1.0
 * @description 支持的云台精确定位方式类型
 * @date 2020/11/9
 */
public class CFG_PTZ_ABSOLUTELY_CAPS extends NetSDKLib.SdkStructure {
    /**
     * 是否支持归一化定位
     */
    public boolean bSupportNormal;
    /**
     * 是否支持实际参数值定位
     */
    public boolean bSupportReal;
    /**
     * 预留
     */
    public byte[] byReserved = new byte[120];
 
    @Override
    public String toString() {
        return "CFG_PTZ_ABSOLUTELY_CAPS{" +
                "bSupportNormal=" + bSupportNormal +
                ", bSupportReal=" + bSupportReal +
                '}';
    }
}