提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3
4 import com.netsdk.lib.NetSDKLib;
5
6 /**
7  * @author 421657
8  * @description 灯光支持的模式信息
9  * @origin autoTool
10  * @date 2023/10/19 17:27:51
11  */
12 public class NET_MODES_COMPLEX_LIGHT extends NetSDKLib.SdkStructure {
13     /**
14      * /红外灯支持的模式
15      */
16     public int[] anInfraredLight = new int[3];
17     /**
18      * /红外灯支持的模式数量
19      */
20     public int nInfraredLightLen;
21     /**
22      * /白光灯支持的模式
23      */
24     public int[] anWhiteLight = new int[3];
25     /**
26      * /白光灯支持的模式数量
27      */
28     public int nWhiteLightLen;
29     /**
30      * /激光灯支持的模式
31      */
32     public int[] anLaserLight = new int[3];
33     /**
34      * /激光灯支持的模式数量
35      */
36     public int nLaserLightLen;
37     /**
38      * /智能混光灯支持的模式
39      */
40     public int[] emAIMixLight = new int[8];
41     /**
42      * /智能混光灯支持的模式数量
43      */
44     public int nAIMixLight;
45     /**
46      * /保留字节
47      */
48     public byte[] byReserved = new byte[92];
49
50     public NET_MODES_COMPLEX_LIGHT() {
51     }
52 }