|
@@ -10,6 +10,7 @@ import com.nokia.finance.tasks.utils.FileUtil;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.csv.CSVFormat;
|
|
|
import org.apache.commons.csv.CSVPrinter;
|
|
|
+import org.springframework.scheduling.annotation.Scheduled;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
@@ -43,9 +44,9 @@ public class HouseBuildingLandCountJob {
|
|
|
this.dataLogService = dataLogService;
|
|
|
}
|
|
|
/**
|
|
|
- * fixme: 执行任务
|
|
|
+ * 执行任务
|
|
|
*/
|
|
|
-// @Scheduled(cron = "0 2 0 13 * ?")
|
|
|
+ @Scheduled(cron = "0 2 0 13 * ?")
|
|
|
@Transactional(timeout = 60, rollbackFor = Exception.class)
|
|
|
public void runJob() {
|
|
|
log.info("执行房产大屏建筑和土地数量统计定时任务");
|