|
|
|
@@ -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(); |
|
|
|
|