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 相位设置信息
8  * @date 2021/09/28
9  */
10 public class NET_PHASE_SETTINGS_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  相位表个数
13      */
14     public int nPhaseListNum;
15
16     /**
17      *  相位表
18      */
19     public NET_PHASE_LIST_INFO[] stuPhaseListInfo = (NET_PHASE_LIST_INFO[]) new NET_PHASE_LIST_INFO().toArray(16);
20     /**
21      *  相位优先配置表个数
22      */
23     public int nPhasePrioritysNum;
24
25     /**
26      *  相位优先配置
27      */
28     public NET_PHASE_PRIORITY_INFO[] stuPhasePriorityInfo = (NET_PHASE_PRIORITY_INFO[]) new NET_PHASE_PRIORITY_INFO().toArray(16);
29     /**
30      *  检测器配置表个数
31      */
32     public int nDetectorSettingsNum;
33
34     /**
35      *  检测器配置表
36      */
37     public NET_DETECTOR_SETTING_INFO[] stuDetectorSettingInfo = (NET_DETECTOR_SETTING_INFO[]) new NET_DETECTOR_SETTING_INFO().toArray(16);
38     /**
39      *  相位所属表个数
40      */
41     public int nClosureSettingNum;
42
43     /**
44      *  相位所属配置表
45      */
46     public NET_CLOSURE_SETTING_INFO[] stuClosureSettingInfo = (NET_CLOSURE_SETTING_INFO[]) new NET_CLOSURE_SETTING_INFO().toArray(16);
47     /**
48      *  预留字节 
49      */
50     public byte[] szReserved = new byte[32];
51 }