Browse Source

fix

release_toaliyun_real
winter 2 years ago
parent
commit
e39c001fdf
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mallinkService/src/main/java/com/iformall/service/impl/WxMsgCallbackServiceImpl.java

+ 2
- 2
mallinkService/src/main/java/com/iformall/service/impl/WxMsgCallbackServiceImpl.java View File

@@ -232,7 +232,7 @@ public class WxMsgCallbackServiceImpl implements WxMsgCallbackService {
if (!"true".equalsIgnoreCase(success)) {
String redisKey = Constant.cache_aliyun_msg+wxMsgCallback.getBatchNo()+":"+wxMsgCallback.getPhone();
Integer msgCached = RedisCacheUtils.getCacheInteger(redisTemplate, redisKey);
if (1== msgCached) {
if (null != msgCached && 1== msgCached) {
return;
}
WxMsgCallback wxMsgCallbackq = new WxMsgCallback();
@@ -255,7 +255,7 @@ public class WxMsgCallbackServiceImpl implements WxMsgCallbackService {
}
}
}
public boolean checksign(String tenantId,Map<String, String> param){

WxMsgConfig wxMsgConfig = new WxMsgConfig();


Loading…
Cancel
Save