提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
|
|
4 |
import com.iailab.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_LIGHT_TYPE_COMPLEX_DETAIL extends NetSDKLib.SdkStructure { |
|
13 |
/** |
|
14 |
* /近光灯组灯类型 |
|
15 |
*/ |
|
16 |
public int[] anNearLight = new int[4]; |
|
17 |
/** |
|
18 |
* /近光灯组灯数量 |
|
19 |
*/ |
|
20 |
public int nNearLightLen; |
|
21 |
/** |
|
22 |
* /中光灯组灯类型 |
|
23 |
*/ |
|
24 |
public int[] anMiddleLight = new int[4]; |
|
25 |
/** |
|
26 |
* /中光灯组灯数量 |
|
27 |
*/ |
|
28 |
public int nMiddleLightLen; |
|
29 |
/** |
|
30 |
* /远光灯组灯类型 |
|
31 |
*/ |
|
32 |
public int[] anFarLight = new int[4]; |
|
33 |
/** |
|
34 |
* /远光灯组灯数量 |
|
35 |
*/ |
|
36 |
public int nFarLightLen; |
|
37 |
/** |
|
38 |
* / 保留字节 |
|
39 |
*/ |
|
40 |
public byte[] byReserved = new byte[128]; |
|
41 |
|
|
42 |
public NET_LIGHT_TYPE_COMPLEX_DETAIL() { |
|
43 |
} |
|
44 |
} |