增加登录同步到充值业务功能

This commit is contained in:
zhujunshuai 2023-04-14 11:29:40 +08:00
parent 6491ed9c7f
commit a87f114e5b
2 changed files with 3 additions and 3 deletions

View File

@ -151,7 +151,7 @@ public class Constant {
/** /**
* 默认收款商户号 * 默认收款商户号
*/ */
public static final String DEFUALT_CASHIER_MERCHANT = "M80020220111357490"; public static final String DEFUALT_CASHIER_MERCHANT = "M800202207078584958";
/** /**
* 默认收款商户属性key * 默认收款商户属性key
@ -166,7 +166,7 @@ public class Constant {
/** /**
* 支付宝H5支付前缀 * 支付宝H5支付前缀
*/ */
public static final String ALIPAY_H5_PAY_URL_PRIFIX = "alipays://platformapi/startapp?appId=20000067&url="; public static final String ALIPAY_H5_PAY_URL_PRIFIX = "alipays://platformapi/startapp?appId=2021003175619219&url=";
/** /**
* 收款通道类型 * 收款通道类型

View File

@ -673,7 +673,7 @@ public class ApiPayServiceImpl implements ApiPayService {
} }
Long cTime = order.getCreateDt().getTime(); Long cTime = order.getCreateDt().getTime();
Long nowTime = System.currentTimeMillis(); Long nowTime = System.currentTimeMillis();
if(nowTime - cTime >= 1000 * 60 * 10){ if(nowTime - cTime >= 1000 * 60 * 1000){
return ResultGenerator.genFailResult("订单已超时,请重新下单!"); return ResultGenerator.genFailResult("订单已超时,请重新下单!");
} }
if(StringUtil.isNotEmpty(order.getPayData())){ if(StringUtil.isNotEmpty(order.getPayData())){