package com.moral.api.task;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Component;
|
|
import com.moral.api.service.DeviceService;
|
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 JudgeOffLineDeviceTask {
|
|
@Autowired
|
private DeviceService deviceService;
|
|
//判断设备是否离线
|
@XxlJob("judgeOffLineDevice")
|
public ReturnT judgeOffLineDevice() {
|
try {
|
deviceService.judgeOffLineDevice();
|
} catch (Exception e) {
|
XxlJobHelper.log(e.getMessage());
|
return ReturnT.FAIL;
|
}
|
return ReturnT.SUCCESS;
|
}
|
}
|