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_TEMP_SCH
8  * @date 2021/09/28
9  */
10 public class NET_CFG_RTSC_TEMP_SCH_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  结构体大小
13      */
14     public int dwSize;
15
16     /**
17      *  临时方案开始时间个数
18      */
19     public int nStartTimeNum;
20
21     /**
22      *  临时方案开始时间   int[0]时       Int[1]分  后两位预留
23      */
24     public int[] nStartTime = new int[4];
25
26     /**
27      *  临时方案结束时间个数
28      */
29     public int nEndTimeNum;
30
31     /**
32      *  临时方案结束时间   int[0]时      Int[1]分  后两位预留
33      */
34     public int[] nEndTime = new int[4];
35
36     /**
37      *  环信息个数
38      */
39     public int nRingsNum;
40
41     /**
42      *  环信息
43      */
44     public NET_RINGS_INFO[] stuRingsInfo = (NET_RINGS_INFO[]) new NET_RINGS_INFO().toArray(4);
45     /**
46      *  跟随相位列表个数
47      */
48     public int nOverLapsNum;
49
50     /**
51      *  跟随相位列表
52      */
53     public NET_OVER_LAPS_INFO[] stuOverLapsInfo = (NET_OVER_LAPS_INFO[]) new NET_OVER_LAPS_INFO().toArray(16);
54     public NET_CFG_RTSC_TEMP_SCH_INFO(){
55         this.dwSize = this.size();
56     }
57 }