...
|
...
|
@@ -1085,11 +1085,8 @@ public class PaymentServiceImpl implements IPaymentService { |
|
|
throw new ServiceException(400, "转账记录已成功转账,流水id=" + tradeBillsId);
|
|
|
}
|
|
|
interfaceType = transfer.getInterfaceType();
|
|
|
if (interfaceType == null || interfaceType < 1 || interfaceType > 2) {
|
|
|
throw new ServiceException(400, "转账记录接口类型有误,流水id=" + tradeBillsId);
|
|
|
}
|
|
|
|
|
|
if (interfaceType == 2) {
|
|
|
if (interfaceType != null && interfaceType == 2) {
|
|
|
transferWhenExceedMillion(transfer.getId(), preSuccess, orderCode, account, amount, now);
|
|
|
return;
|
|
|
}
|
...
|
...
|
|