Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 跟随相位列表信息
 * @date 2021/09/02
 */
public class NET_OVER_LAPS_INFO extends NetSDKLib.SdkStructure{
     /**
     *  跟随相位编号
     */
    public int nOverlapNum;
 
    /**
     *  跟随相位关联的主相位个数
     */
    public int nIncludedPhasesNum;
 
    /**
     *  跟随相位关联的主相位数组
     */
    public int[] nIncludedPhases = new int[16];
 
    /**
     *  跟随相位延时时间个数
     */
    public int nStartDelayTimeNum;
 
    /**
     *  跟随相位延时时间数组
     */
    public int[] nStartDelayTime = new int[16];
 
    /**
     *  预留字节
     */
    public byte[] szReserved = new byte[32];
}