mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
update
This commit is contained in:
@@ -74,8 +74,12 @@ public class CacheConstants {
|
||||
// 汇付会员账户
|
||||
public static final String ADAPAY_MEMBER_ACCOUNT = "adapay_member_account:";
|
||||
|
||||
// 充电桩固件版本
|
||||
public static final String PILE_PROGRAM_VERSION = "pile_program_version_";
|
||||
|
||||
// 查询订单支付信息
|
||||
public static final String SELECT_ORDER_PAY_INFO_LIST = "select_order_pay_info_list:";
|
||||
|
||||
// 查询订单微信支付回调
|
||||
public static final String QUERY_ORDER_WECHAT_CALLBACK = "query_order_wechat_callback:";
|
||||
|
||||
@@ -91,6 +95,7 @@ public class CacheConstants {
|
||||
// 微信支付参数
|
||||
public static final String WECHAT_PAY_ORDER_PARAM = "wechat_pay_order_param:";
|
||||
|
||||
// AccessToken
|
||||
public static final String ACCESS_TOKEN = "AccessToken_";
|
||||
|
||||
// 通过交易流水号查询订单实时数据
|
||||
|
||||
@@ -74,7 +74,7 @@ public class OrderPayRecordServiceImpl implements OrderPayRecordService {
|
||||
@Override
|
||||
public List<OrderDetailInfoVO.PayRecord> selectOrderPayInfoList(String orderCode) {
|
||||
// 缓存
|
||||
String redisKey = "select_order_pay_info_list:" + orderCode;
|
||||
String redisKey = CacheConstants.SELECT_ORDER_PAY_INFO_LIST + orderCode;
|
||||
List<OrderDetailInfoVO.PayRecord> resultList = redisCache.getCacheList(redisKey);
|
||||
if (CollectionUtils.isNotEmpty(resultList)) {
|
||||
return resultList;
|
||||
|
||||
Reference in New Issue
Block a user