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