提交 | 用户 | 时间 | ||
ce910c | 1 | package com.netsdk.lib.structure; |
H | 2 | |
3 | ||
4 | import com.netsdk.lib.NetSDKLib; | |
5 | ||
6 | /** | |
7 | * @author 421657 | |
8 | * @description 获取补光灯能力入参(对应 : NET_LIGHTINGCONTROL_CAPS) | |
9 | * @origin autoTool | |
10 | * @date 2023/10/19 17:05:46 | |
11 | */ | |
12 | public class NET_IN_LIGHTINGCONTROL_CAPS extends NetSDKLib.SdkStructure { | |
13 | /** | |
14 | * /结构体大小 | |
15 | */ | |
16 | public int dwSize; | |
17 | /** | |
18 | * / 通道号 | |
19 | */ | |
20 | public int nChannel; | |
21 | ||
22 | public NET_IN_LIGHTINGCONTROL_CAPS() { | |
23 | this.dwSize = this.size(); | |
24 | } | |
25 | } |