|
|
@@ -370,7 +370,7 @@ public class OrderPayService {
|
|
|
switch (PAY_CHANNEL) {
|
|
|
case Constants.PayChannel.SAND:
|
|
|
return sandPayService.pay(orderId + "", "拍卖:" + order.getName(), order.getTotalPrice(),
|
|
|
- order.getCreatedAt().plusMinutes(3), "auctionOrder");
|
|
|
+ order.getCreatedAt().plusMinutes(3), Constants.OrderNotifyType.AUCTION);
|
|
|
case Constants.PayChannel.HM:
|
|
|
return hmPayService.requestAlipay(orderId + "", order.getTotalPrice(),
|
|
|
"拍卖:" + order.getName(), HMPayService.getTimeout(order.getCreatedAt(), 180),
|
|
|
@@ -419,6 +419,6 @@ public class OrderPayService {
|
|
|
throw new BusinessException("请先绑定银行卡");
|
|
|
}
|
|
|
return payEaseService.pay("拍卖:" + order.getAuctionId(), orderId.toString(), order.getTotalPrice(),
|
|
|
- order.getUserId().toString(), bindCardId, "auctionOrder");
|
|
|
+ order.getUserId().toString(), bindCardId, Constants.OrderNotifyType.AUCTION);
|
|
|
}
|
|
|
}
|