...
|
...
|
@@ -54,11 +54,17 @@ public class AlipayTask { |
|
|
min = 30;
|
|
|
}
|
|
|
|
|
|
QueryResult queryResult_qcloud = paymentMapper.selectAlipayCountAllFromQcloud(min);
|
|
|
int count_qcloud = QueryResultUtil.getCount(queryResult_qcloud);
|
|
|
DEBUG.debug("order from qcloud start alipay task count {}",count_qcloud);
|
|
|
|
|
|
QueryResult queryResult = paymentMapper.selectAlipayCountAll(min);
|
|
|
int count = QueryResultUtil.getCount(queryResult);
|
|
|
DEBUG.info("start alipay task count {}",count);
|
|
|
DEBUG.debug("order start alipay task count {}", count);
|
|
|
|
|
|
|
|
|
|
|
|
if (count == 0) {
|
|
|
if (count == 0&&count_qcloud==0) {
|
|
|
boolean needVoice = true;
|
|
|
|
|
|
QueryResult queryResult1 = smsUpMapper.select(30);
|
...
|
...
|
|