Browse Source

添加值际对标代码更新

wangchangsheng 2 years ago
parent
commit
17bd5fc651

+ 1 - 1
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/mapper/auto/ProEconBenchmarkingBetweenMapper.java

@@ -18,7 +18,7 @@ import java.util.List;
  */
 public interface ProEconBenchmarkingBetweenMapper extends BaseMapper<ProEconBenchmarkingBetween> {
 
-    @Select("select duty_name,sum(theoretical_generatity) theoreticalgeneratity,sum(generatity) generatity,sum(fault_loss) faultloss,sum(main_loss) mainloss,sum(performance_loss) performanceloss,sum(rationing_loss) rationingloss,sum(involves_loss) involvesloss from pro_econ_benchmarking_between where theday>=#{begin} and theday <=#{end} group by duty_name ")
+    @Select("select duty_name dutyName,sum(theoretical_generatity) theoreticalGeneratity,sum(generatity) generatity,sum(fault_loss) faultLoss,sum(main_loss) mainLoss,sum(performance_loss) performanceLoss,sum(rationing_loss) rationingLoss,sum(involves_loss) involvesLoss from pro_econ_benchmarking_between where theday>=#{begin} and theday <=#{end} group by duty_name ")
     public List<ProEconBenchmarkingBetween> findByBeginAndEnd(@Param(value = "begin") Date begin, @Param(value = "end")Date end);
 
 }

+ 37 - 0
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/task/SaticScheduleTask.java

@@ -0,0 +1,37 @@
+package com.gyee.runeconomy.task;
+
+import com.gyee.common.util.DateUtils;
+import com.gyee.runeconomy.service.auto.IProEconBenchmarkingBetweenService;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.scheduling.annotation.EnableScheduling;
+import org.springframework.scheduling.annotation.Scheduled;
+
+import java.util.Date;
+
+@Configuration      //1.主要用于标记配置类,兼备Component的效果。
+@EnableScheduling   // 2.开启定时任务
+public class SaticScheduleTask {
+
+   private  IProEconBenchmarkingBetweenService iProEconBenchmarkingBetweenService;
+
+
+
+    /**
+     * 定时调度任务
+     */
+    @Scheduled(cron = "0 0 1 * * ?")
+    //或直接指定时间间隔,例如:5秒
+    //@Scheduled(fixedRate=5000)
+    private void configureTasks1()  {
+        Date yestday = DateUtils.getYestday(new Date());
+        String date = DateUtils.toDate1(yestday);
+        try {
+            //值际对标定时
+            iProEconBenchmarkingBetweenService.saveBeanchmarkList(date,date);
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+
+    }
+
+}