jinpengyong
2021-08-03 bf8cb657cd550ce3061401bdf2842723d3c190a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.moral.api.task;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
import com.moral.api.service.HistoryHourlyService;
import com.xxl.job.core.biz.model.ReturnT;
import com.xxl.job.core.context.XxlJobHelper;
import com.xxl.job.core.handler.annotation.XxlJob;
 
@Component
public class DeleteHistoryHourlyTransitionTask {
 
    @Autowired
    private HistoryHourlyService historyHourlyService;
 
    //删除中间小时表数据
    @XxlJob("deleteHourlyTransition")
    public ReturnT insertHistoryFiveMinutely() {
        try {
            historyHourlyService.deleteHistoryHourlyTransition();
        } catch (Exception e) {
            XxlJobHelper.log(e.getMessage());
            return ReturnT.FAIL;
        }
        return ReturnT.SUCCESS;
    }
 
}