|
|
@@ -397,8 +397,8 @@ public class WithdrawService extends SuperService {
|
|
|
withdrawOrder.setProcessUserId(userAccount.getUserId());
|
|
|
withdrawOrder.setProcessTime(System.currentTimeMillis());
|
|
|
withdrawOrderDao.save(withdrawOrder);
|
|
|
- WithdrawStatus execute = ExecuteQueueUtil.execute(5, index -> {
|
|
|
- return Map.of(1, 1000L, 2, 3000L, 3, 5000L, 4, 5000L, 5, 5000L).getOrDefault(index, 3000L);
|
|
|
+ WithdrawStatus w = ExecuteQueueUtil.execute(1440, index -> {
|
|
|
+ return Map.of(1, 1000L, 2, 3000L, 3, 5000L, 4, 5000L, 5, 5000L).getOrDefault(index, 60*1000L);
|
|
|
}, data -> {
|
|
|
var result = new ExecuteQueueUtil.Result<WithdrawStatus>();
|
|
|
com.github.microservice.net.ResultContent<WithdrawStatus> resultContent = withdrawQuery(withdrawOrder.getId());
|