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_CLOSURE_SETTING_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  相位所属环编号
13      */
14     public int nRingNo;
15
16     /**
17      *  相位所属栅栏编号
18      */
19     public int nBarrierNo;
20
21     /**
22      *  相位所属栅栏内的位置
23      */
24     public int nGridNo;
25
26     /**
27      *  相位编号
28      */
29     public int nPhaseNum;
30
31     /**
32      *  相位重复出现的次数
33      */
34     public int nPhaseOrder;
35
36     /**
37      *  参照设备id
38      */
39     public byte[] szReferDeviceId = new byte[72];
40
41     /**
42      *  参照设备名称
43      */
44     public byte[] szReferDeviceName = new byte[72];
45
46     /**
47      *  参照方案编号
48      */
49     public int nReferPlanNum;
50
51     /**
52      *  参照方案名称
53      */
54     public byte[] szReferPlanName = new byte[72];
55
56     /**
57      *  参照相位
58      */
59     public int nReferPhaseNum;
60
61     /**
62      *  参照相位重复出现的次数
63      */
64     public int nReferPhaseOrder;
65
66     /**
67      *  绿信比/时间
68      */
69     public double dbSplitTime;
70
71     /**
72      *  类型,1绿信比/2时间
73      */
74     public int nReferType;
75
76     /**
77      *  字节对齐
78      */
79     public byte[] szReserved1 = new byte[4];
80
81     /**
82      *  预留字节 
83      */
84     public byte[] szReserved = new byte[32];
85 }