houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib;
 
/**
 * @author 251823
 * @description 相位所属配置表
 * @date 2021/09/28
 */
public class NET_CLOSURE_SETTING_INFO extends NetSDKLib.SdkStructure{
    /**
     *  相位所属环编号
     */
    public int nRingNo;
 
    /**
     *  相位所属栅栏编号
     */
    public int nBarrierNo;
 
    /**
     *  相位所属栅栏内的位置
     */
    public int nGridNo;
 
    /**
     *  相位编号
     */
    public int nPhaseNum;
 
    /**
     *  相位重复出现的次数
     */
    public int nPhaseOrder;
 
    /**
     *  参照设备id
     */
    public byte[] szReferDeviceId = new byte[72];
 
    /**
     *  参照设备名称
     */
    public byte[] szReferDeviceName = new byte[72];
 
    /**
     *  参照方案编号
     */
    public int nReferPlanNum;
 
    /**
     *  参照方案名称
     */
    public byte[] szReferPlanName = new byte[72];
 
    /**
     *  参照相位
     */
    public int nReferPhaseNum;
 
    /**
     *  参照相位重复出现的次数
     */
    public int nReferPhaseOrder;
 
    /**
     *  绿信比/时间
     */
    public double dbSplitTime;
 
    /**
     *  类型,1绿信比/2时间
     */
    public int nReferType;
 
    /**
     *  字节对齐
     */
    public byte[] szReserved1 = new byte[4];
 
    /**
     *  预留字节 
     */
    public byte[] szReserved = new byte[32];
}