mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
update
This commit is contained in:
@@ -1319,9 +1319,9 @@ public class LianLianServiceImpl implements LianLianService {
|
||||
AccessTokenVO vo = new AccessTokenVO();
|
||||
vo.setAccessToken(token);
|
||||
vo.setOperatorID(operatorID);
|
||||
vo.setTokenAvailableTime(String.valueOf(ttlMillis / 1000));
|
||||
vo.setFailReason("0");
|
||||
vo.setSuccStat("0");
|
||||
vo.setTokenAvailableTime((int) (ttlMillis / 1000));
|
||||
vo.setFailReason(0);
|
||||
vo.setSuccStat(0);
|
||||
|
||||
Map<String, String> resultMap = Maps.newLinkedHashMap();
|
||||
// 加密数据
|
||||
|
||||
@@ -19,7 +19,7 @@ public class AccessTokenVO {
|
||||
* 1:失败
|
||||
*/
|
||||
@JsonProperty(value = "SuccStat")
|
||||
private String succStat;
|
||||
private Integer succStat;
|
||||
|
||||
/**
|
||||
* 字符串 全局唯一凭证
|
||||
@@ -31,7 +31,7 @@ public class AccessTokenVO {
|
||||
* 整型 凭证有效期,单位秒
|
||||
*/
|
||||
@JsonProperty(value = "TokenAvailableTime")
|
||||
private String tokenAvailableTime;
|
||||
private Integer tokenAvailableTime;
|
||||
|
||||
/**
|
||||
* 整型
|
||||
@@ -40,5 +40,5 @@ public class AccessTokenVO {
|
||||
* 2:密钥错误; 3~99:自定义
|
||||
*/
|
||||
@JsonProperty(value = "FailReason")
|
||||
private String failReason;
|
||||
private Integer failReason;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user