增加登录同步到充值业务功能
This commit is contained in:
parent
6491ed9c7f
commit
a87f114e5b
|
|
@ -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=";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 收款通道类型
|
* 收款通道类型
|
||||||
|
|
|
||||||
|
|
@ -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())){
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue