提交 | 用户 | 时间
|
149dd0
|
1 |
package com.iailab.netsdk.lib.structure; |
H |
2 |
|
|
3 |
import com.iailab.netsdk.lib.NetSDKLib; |
|
4 |
import com.iailab.netsdk.lib.enumeration.NET_EM_CFG_OPERATE_TYPE; |
|
5 |
|
|
6 |
/** |
|
7 |
* @author 47081 |
|
8 |
* @version 1.0 |
|
9 |
* @description 健康码使能, |
|
10 |
* 对应枚举类型{@link NET_EM_CFG_OPERATE_TYPE#NET_EM_CFG_HEALTH_CODE} |
|
11 |
* @date 2020/9/10 |
|
12 |
*/ |
|
13 |
public class NET_CFG_HEALTH_CODE_INFO extends NetSDKLib.SdkStructure { |
|
14 |
/** |
|
15 |
* 结构体大小 |
|
16 |
*/ |
|
17 |
public int dwSize; |
|
18 |
/** |
|
19 |
* 健康码使能,1:使能;0:未使能 |
|
20 |
*/ |
|
21 |
public int bEnable; |
|
22 |
/** |
|
23 |
* 健康码离线使能,1:使能;0:未使能 |
|
24 |
*/ |
|
25 |
public int bOfflineEnable; |
|
26 |
/** |
|
27 |
* 核验健康码功能使能 |
|
28 |
*/ |
|
29 |
public int bCheckHealthCode; |
|
30 |
/** |
|
31 |
* 核酸显示使能 |
|
32 |
*/ |
|
33 |
public int bHSVisible; |
|
34 |
/** |
|
35 |
* 核验核酸功能使能 |
|
36 |
*/ |
|
37 |
public int bHSCheckEnable; |
|
38 |
/** |
|
39 |
* 核酸结果超时时间(小时) 0 默认不处理 |
|
40 |
*/ |
|
41 |
public int nHSTimeout; |
|
42 |
/** |
|
43 |
* 核酸采集超时时间(小时) 0 默认不处理 |
|
44 |
*/ |
|
45 |
public int nHSCollectTimeout; |
|
46 |
/** |
|
47 |
* 疫苗显示使能 |
|
48 |
*/ |
|
49 |
public int bVaccineVisible; |
|
50 |
/** |
|
51 |
* 疫苗校验使能 |
|
52 |
*/ |
|
53 |
public int bVaccineCheckEnable; |
|
54 |
/** |
|
55 |
* 行程码显示使能 |
|
56 |
*/ |
|
57 |
public int bTravelCodeVisible; |
|
58 |
/** |
|
59 |
* 行程码校验使能 |
|
60 |
*/ |
|
61 |
public int bTravelCodeCheck; |
|
62 |
/** |
|
63 |
* 加强针状态显示 |
|
64 |
*/ |
|
65 |
public int bVaccineIntensifyVisible; |
|
66 |
/** |
|
67 |
* 健康码鉴权方式组合 0:无组合方式 1:健康码单独存在 2:与现有鉴权方式组合,健康码鉴权优先 |
|
68 |
*/ |
|
69 |
public int nOFFLineGreenCodeMethod; |
|
70 |
/** |
|
71 |
* 二维码过期时间(秒) |
|
72 |
*/ |
|
73 |
public int nCodeFlushTimeout; |
|
74 |
/** |
|
75 |
* 健康码请求超时时间(秒); 默认2秒 |
|
76 |
*/ |
|
77 |
public int nHealthQueryTimeout; |
|
78 |
/** |
|
79 |
* 红码禁止通行使能 |
|
80 |
*/ |
|
81 |
public int bRedPermit; |
|
82 |
/** |
|
83 |
* 黄码禁止通行使能 |
|
84 |
*/ |
|
85 |
public int bYellowPermit; |
|
86 |
/** |
|
87 |
* 健康码请求超时禁止通行使能 |
|
88 |
*/ |
|
89 |
public int bQueryTimeoutPermit; |
|
90 |
|
|
91 |
public NET_CFG_HEALTH_CODE_INFO() { |
|
92 |
this.dwSize = this.size(); |
|
93 |
} |
|
94 |
} |