Commit 9d784e56 authored by suntao's avatar suntao

二次风控审批

parent 69373a01
...@@ -357,7 +357,7 @@ public class OrderServiceImpl implements OrderService{ ...@@ -357,7 +357,7 @@ public class OrderServiceImpl implements OrderService{
log.info("[secendAudit]二次风控操作 最后结果,channelOrderNumber={}, result={}", channelOrderNumber, result); log.info("[secendAudit]二次风控操作 最后结果,channelOrderNumber={}, result={}", channelOrderNumber, result);
return new Tuple<>(result, "二次风控审批完成"); return new Tuple<>(result, "二次风控审批完成,请等待,有部分异步任务");
} }
......
...@@ -47,12 +47,12 @@ public class JolyneServiceImpl implements JolyneService { ...@@ -47,12 +47,12 @@ public class JolyneServiceImpl implements JolyneService {
public String delayUpdateWaitingXyqbSql(Long loanId, Long delayTime) { public String delayUpdateWaitingXyqbSql(Long loanId, Long delayTime) {
WaitingFundingCorpOperatePeople waitingFundingCorpOperatePeople = null; WaitingFundingCorpOperatePeople waitingFundingCorpOperatePeople;
LoanApplicationHistory loanApplicationHistory; LoanApplicationHistory loanApplicationHistory;
int i = 0; int i = 0;
while (waitingFundingCorpOperatePeople != null) { while (true) {
try { try {
Thread.sleep(delayTime); Thread.sleep(delayTime);
} catch (InterruptedException e) { } catch (InterruptedException e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment