提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 饱和度与单点自适应智能化配置表信息
8  * @date 2021/09/28
9  */
10 public class NET_OPTIMIZES_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  周期方案编号
13      */
14     public int nCyclePlanNum;
15
16     /**
17      *  协调相位编号
18      */
19     public int nCoordinatePhaseNum;
20
21     /**
22      *  协调相位重复出现的次数
23      */
24     public int nCoordinatePhaseOrder;
25
26     /**
27      *  相位所属环编号
28      */
29     public int nCoordinateRingNo;
30
31     /**
32      *  相位所属栅栏编号
33      */
34     public int nCoordinateBarrierNo;
35
36     /**
37      *  相位所属栅栏内的位置
38      */
39     public int nCoordinateGridNo;
40
41     /**
42      *  参照设备id
43      */
44     public byte[] szReferDeviceId = new byte[72];
45
46     /**
47      *  参照设备名称
48      */
49     public byte[] szReferDeviceName = new byte[72];
50
51     /**
52      *  参照路口的周期方案编号
53      */
54     public int nReferCyclePlanNum;
55
56     /**
57      *  参照路口的周期方案名称
58      */
59     public byte[] szReferCyclePlanName = new byte[72];
60
61     /**
62      *  参考相位
63      */
64     public int nReferPhaseNum;
65
66     /**
67      *  参照相位重复出现的次数
68      */
69     public int nReferPhaseOrder;
70
71     /**
72      *  参考类型 1为早,2为晚
73      */
74     public int nReferType;
75
76     /**
77      *  相位差
78      */
79     public int nOffset;
80
81     /**
82      *  感应参数
83      */
84     public NET_SENIOR_INFO stuSeniorInfo;
85
86     /**
87      *  预留字节
88      */
89     public byte[] szReserved = new byte[32];
90 }