提交 | 用户 | age
|
1ffbaa
|
1 |
package com.hx.encryption; |
W |
2 |
|
|
3 |
/** |
|
4 |
* 接口解密返回结果配置 |
|
5 |
* @author wangrenhuang |
|
6 |
* @Data 2020-06-09 |
|
7 |
*/ |
|
8 |
public class PTConstant { |
|
9 |
|
|
10 |
public static String PT_SIGN_EEMPLY = "签名为空!"; |
|
11 |
public static String PT_TIMELS_EMPLY = "时间为空!"; |
|
12 |
public static String PT_SIGN_ERROR = "签名错误"; |
|
13 |
public static String PT_ORER_TIME = "接口超时"; |
|
14 |
|
|
15 |
|
|
16 |
private boolean success; |
|
17 |
private String errCode; |
|
18 |
|
|
19 |
|
|
20 |
/*************************************************************************/ |
|
21 |
|
|
22 |
public boolean isSuccess() { |
|
23 |
return success; |
|
24 |
} |
|
25 |
public void setSuccess(boolean success) { |
|
26 |
this.success = success; |
|
27 |
} |
|
28 |
public String getErrCode() { |
|
29 |
return errCode; |
|
30 |
} |
|
31 |
public void setErrCode(String errCode) { |
|
32 |
this.errCode = errCode; |
|
33 |
} |
|
34 |
} |