提交 | 用户 | 时间
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/27
9  */
10 public class NET_PHASE_PRIORITY_CONFIG_INFO extends NetSDKLib.SdkStructure{
11     /**
12      *  序号
13      */
14     public int nId;
15
16     /**
17      *  相位编号,仅支持单环
18      */
19     public int nPhaseNum;
20
21     /**
22      *  相位重复出现的次数
23      */
24     public int nPhaseOrder;
25
26     /**
27      *  相位切换阈值
28      */
29     public int nMinGreenThr;
30
31     /**
32      *  跳相阈值
33      */
34     public int nSkipThr;
35
36     /**
37      *  启用检测器编号个数
38      */
39     public int nEnbleDetectorsNum;
40
41     /**
42      *  启用检测器编号
43      */
44     public int[] nEnbleDetectors = new int[16];
45
46     /**
47      *  预留字节
48      */
49     public byte[] szReserved = new byte[32];
50 }