mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
update
This commit is contained in:
@@ -64,7 +64,7 @@ public class AdapayCallbackRecordServiceImpl implements AdapayCallbackRecordServ
|
||||
if (StringUtils.isBlank(orderCode)) {
|
||||
return null;
|
||||
}
|
||||
String redisKey = CacheConstants.QUERY_ORDER_CALLBACK + orderCode;
|
||||
String redisKey = CacheConstants.QUERY_ORDER_ADAPAY_CALLBACK + orderCode;
|
||||
AdapayCallbackRecord record = redisCache.getCacheObject(redisKey);
|
||||
if (record != null) {
|
||||
return record;
|
||||
|
||||
@@ -61,7 +61,7 @@ public class WxpayCallbackRecordServiceImpl implements WxpayCallbackRecordServic
|
||||
if (StringUtils.isBlank(orderCode)) {
|
||||
return null;
|
||||
}
|
||||
String redisKey = CacheConstants.QUERY_ORDER_CALLBACK + orderCode;
|
||||
String redisKey = CacheConstants.QUERY_ORDER_WECHAT_CALLBACK + orderCode;
|
||||
WxpayCallbackRecord wxpayCallbackRecord = redisCache.getCacheObject(redisKey);
|
||||
if (wxpayCallbackRecord != null) {
|
||||
return wxpayCallbackRecord;
|
||||
|
||||
Reference in New Issue
Block a user