Browse Source

feat: 车辆租赁费用增加year_no,month_no,调整定时任务时间

weijianghai 2 months ago
parent
commit
abdb3ca869

+ 4 - 0
src/main/java/com/nokia/finance/tasks/dao/car/CarProcedureDao.java

@@ -1630,6 +1630,8 @@ insert into car.car_fei_yong_month
     che_liang_suo_shu_dan_wei,
     first_unit,
     che_pai_hao,
+    year_no,
+    month_no,
     year_month
 )
 select
@@ -1637,6 +1639,8 @@ select
     che_liang_suo_shu_dan_wei,
     first_unit,
     che_pai_hao,
+    year_no,
+    month_no,
     year_month
 from
     car.car_zu_lin b

+ 1 - 1
src/main/java/com/nokia/finance/tasks/jobs/house/fcdp/HouseBuildingAreaStatJob.java

@@ -47,7 +47,7 @@ public class HouseBuildingAreaStatJob {
     /**
      * 执行任务
      */
-    @Scheduled(cron = "0 0 0 12 * ?")
+    @Scheduled(cron = "0 0 0 13 * ?")
     @Transactional(timeout = 60, rollbackFor = Exception.class)
     public void runJob() {
         log.info("执行房产大屏建筑面积统计定时任务");

+ 1 - 1
src/main/java/com/nokia/finance/tasks/jobs/house/fcdp/HouseBuildingLandCountJob.java

@@ -46,7 +46,7 @@ public class HouseBuildingLandCountJob {
     /**
      * 执行任务
      */
-    @Scheduled(cron = "0 2 0 12 * ?")
+    @Scheduled(cron = "0 2 0 13 * ?")
     @Transactional(timeout = 60, rollbackFor = Exception.class)
     public void runJob() {
         log.info("执行房产大屏建筑和土地数量统计定时任务");

+ 1 - 1
src/main/java/com/nokia/finance/tasks/jobs/house/fcdp/HouseRentalIncomeJob.java

@@ -35,7 +35,7 @@ public class HouseRentalIncomeJob {
     /**
      * 执行任务
      */
-    @Scheduled(cron = "0 4 0 12 * ?")
+    @Scheduled(cron = "0 4 0 13 * ?")
 //    @Transactional(timeout = 60, rollbackFor = Exception.class)
     public void runJob() {
         try {

+ 1 - 1
src/main/java/com/nokia/finance/tasks/jobs/house/strategy/HouseBuildingIdleStrategyJob.java

@@ -48,7 +48,7 @@ public class HouseBuildingIdleStrategyJob {
     /**
      * 执行任务
      */
-    @Scheduled(cron = "0 6 0 12 * ?")
+    @Scheduled(cron = "0 6 0 13 * ?")
     @Transactional(timeout = 60, rollbackFor = Exception.class)
     public void runJob() {
         log.info("执行闲置建筑面积超过1000平米策略定时任务");