Parcourir la source

fix

release_toaliyun_real
winter il y a 2 ans
Parent
révision
e39c001fdf
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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 Voir le fichier

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


WxMsgConfig wxMsgConfig = new WxMsgConfig(); WxMsgConfig wxMsgConfig = new WxMsgConfig();


Chargement…
Annuler
Enregistrer