houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 260611
7  * @description CLIENT_PTZSetZoomValue 接口输入参数
8  * @origin autoTool
9  * @date 2023/10/16 14:11:21
10  */
11 public class NET_IN_PTZ_SET_ZOOM_VALUE extends NetSDKLib.SdkStructure {
12     /**
13      *  结构体大小
14      */
15     public int dwSize;
16     /**
17      *  通道号, 范围 0~设备通道数
18      */
19     public int nChannel;
20     /**
21      *  变倍值,扩大10倍表示
22      */
23     public int nValue;
24
25     public NET_IN_PTZ_SET_ZOOM_VALUE() {
26         this.dwSize = this.size();
27     }
28 }