Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.iailab.netsdk.lib.structure;
 
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/** 
* @author 291189
* @description  设置诱导屏显示内容(DH_CTRL_ECK_GUIDINGPANEL_CONTENT) 
* @origin autoTool
* @date 2023/06/27 16:54:42
*/
public class NET_CTRL_ECK_GUIDINGPANEL_CONTENT extends NetSDKLib.SdkStructure {
/** 
结构体大小
*/
public            int                    dwSize;
/** 
显示内容数量
*/
public            int                    nPanelNum;
/** 
显示内容
*/
public            NET_ECK_PANEL_CONTENT[]                    stuContentInfo=new NET_ECK_PANEL_CONTENT[12];
 
public            NET_CTRL_ECK_GUIDINGPANEL_CONTENT(){
        for(int i=0;i<stuContentInfo.length;i++){
            stuContentInfo[i]=new NET_ECK_PANEL_CONTENT();
            }
        this.dwSize=this.size();
}
}