提交 | 用户 | 时间
|
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_CYCLE_SETTINGS_INFO extends NetSDKLib.SdkStructure{ |
|
11 |
|
|
12 |
/** |
|
13 |
* 周期上限,最大饱和度对应的周期值nMaxCyc(30 ~ 240) |
|
14 |
*/ |
|
15 |
public int nCycleMax; |
|
16 |
|
|
17 |
/** |
|
18 |
* 周期下限,最小饱和度对应的周期值nMinCyc(30 ~ 240) |
|
19 |
*/ |
|
20 |
public int nCycleMin; |
|
21 |
|
|
22 |
/** |
|
23 |
* 饱和度约束上限(0.000~1.000) |
|
24 |
*/ |
|
25 |
public float fSaturitionUpLimit; |
|
26 |
|
|
27 |
/** |
|
28 |
* 饱和度约束下限(0.000~1.000) |
|
29 |
*/ |
|
30 |
public float fSaturitionDnLimit; |
|
31 |
|
|
32 |
/** |
|
33 |
* 周期锁定约束上限(30 ~ 240) |
|
34 |
*/ |
|
35 |
public int nCycleUpLimit; |
|
36 |
|
|
37 |
/** |
|
38 |
* 周期锁定约束下限(30 ~ 240) |
|
39 |
*/ |
|
40 |
public int nCycleDnLimit; |
|
41 |
|
|
42 |
/** |
|
43 |
* 周期上升最大步长(1 ~ 20) |
|
44 |
*/ |
|
45 |
public int nCycleUpStep; |
|
46 |
|
|
47 |
/** |
|
48 |
* 周期下降最大步长(1 ~ 20) |
|
49 |
*/ |
|
50 |
public int nCycleDnStep; |
|
51 |
|
|
52 |
/** |
|
53 |
* 平滑周期饱和度个数(1 ~ 5) |
|
54 |
*/ |
|
55 |
public int nSmoothCycNum; |
|
56 |
|
|
57 |
/** |
|
58 |
* 是否允许双周期:0不允许 1允许 |
|
59 |
*/ |
|
60 |
public int nPermitDoubleCyc; |
|
61 |
|
|
62 |
/** |
|
63 |
* 触发双周期的阈值(60 ~ 240) |
|
64 |
*/ |
|
65 |
public int nDoubleCycThreshold; |
|
66 |
|
|
67 |
/** |
|
68 |
* 预留字节 |
|
69 |
*/ |
|
70 |
public byte[] szReserved = new byte[32]; |
|
71 |
} |