houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2 /**
3  * @author 47081
4  * @desc
5  * @version 1.0.0
6  * @date 2021/4/9
7  */
8 import com.netsdk.lib.NetSDKLib;
9
10 /**
11  * @author 47081
12  * @description CLIENT_GetDevCaps NET_VIDEOIN_DAYNIGHT_CAPS 命令入参,日夜模式能力集
13  * @date 2021/4/9
14  * @version 1.0
15  */
16 public class NET_IN_VIDEOIN_DAYNIGHT_CAPS extends NetSDKLib.SdkStructure {
17   /** 用户使用时赋值为结构体大小 */
18   public int dwSize;
19   /** 通道号 */
20   public int nChannel;
21
22   public NET_IN_VIDEOIN_DAYNIGHT_CAPS() {
23     this.dwSize = size();
24   }
25 }