houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 周期方案表, 对应配置项NET_EM_CFG_RTSC_SCH_PLANS
8  * @date 2021/09/02
9  */
10 public class NET_CFG_RTSC_SCH_PLANS_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  结构体大小
13      */
14     public int dwSize;
15
16     /**
17      *  最大方案个数 只读
18      */
19     public int nMaxCyclePlans;
20
21     /**
22      *  周期方案列表个数
23      */
24     public int nCyclePalnNum;
25
26     /**
27      *  周期方案列表
28      */
29     public NET_CYCLE_PLAN_INFO[] stuCyclePlan = (NET_CYCLE_PLAN_INFO[]) new NET_CYCLE_PLAN_INFO().toArray(20);
30     
31     public NET_CFG_RTSC_SCH_PLANS_INFO(){
32         this.dwSize = this.size();
33     }
34 }