|
|
@@ -139,7 +139,7 @@ public class STKTask {
|
|
|
}
|
|
|
|
|
|
//客商获取(当天)
|
|
|
- @Scheduled(cron = "0 05 10 * * ?")
|
|
|
+ //@Scheduled(cron = "0 05 10 * * ?")
|
|
|
public void queryCustVendDayQuartz(){
|
|
|
log.info("开始获取深投控客商状态信息=========start=============");
|
|
|
Date date = new Date();
|
|
|
@@ -151,7 +151,7 @@ public class STKTask {
|
|
|
log.info("结束时间:"+start.get(Calendar.YEAR)+"-"+month+"-"+start.get(Calendar.DAY_OF_MONTH)+" 23:59:59");
|
|
|
QueryTravellingMerchantDto dto = new QueryTravellingMerchantDto();
|
|
|
dto.setPage(1);
|
|
|
- dto.setSize(500);
|
|
|
+ dto.setSize(1000);
|
|
|
dto.setStart_time(start.get(Calendar.YEAR)+"-"+month+"-"+start.get(Calendar.DAY_OF_MONTH)+" 00:00:00");
|
|
|
dto.setEnd_time(start.get(Calendar.YEAR)+"-"+month+"-"+start.get(Calendar.DAY_OF_MONTH)+" 23:59:59");
|
|
|
|