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/02
9  */
10 public class NET_OVER_LAPS_INFO extends NetSDKLib.SdkStructure{
11      /**
12      *  跟随相位编号
13      */
14     public int nOverlapNum;
15
16     /**
17      *  跟随相位关联的主相位个数
18      */
19     public int nIncludedPhasesNum;
20
21     /**
22      *  跟随相位关联的主相位数组
23      */
24     public int[] nIncludedPhases = new int[16];
25
26     /**
27      *  跟随相位延时时间个数
28      */
29     public int nStartDelayTimeNum;
30
31     /**
32      *  跟随相位延时时间数组
33      */
34     public int[] nStartDelayTime = new int[16];
35
36     /**
37      *  预留字节
38      */
39     public byte[] szReserved = new byte[32];
40 }