实体移动
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
package com.njcn.executor.handler;
|
||||
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.njcn.energy.pojo.api.EleAirStrategyFeignClient;
|
||||
import com.njcn.prepare.harmonic.api.liteflow.LiteFlowFeignClient;
|
||||
import com.njcn.web.pojo.param.BaseParam;
|
||||
import com.xxl.job.core.context.XxlJobHelper;
|
||||
import com.xxl.job.core.handler.annotation.XxlJob;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* PMS/PQS
|
||||
* 算法定时任务
|
||||
* @author xuyang
|
||||
* @date 2023/11/15
|
||||
*/
|
||||
|
||||
@Slf4j
|
||||
@Component
|
||||
@AllArgsConstructor
|
||||
public class LiteFlowJob {
|
||||
|
||||
private final LiteFlowFeignClient liteFlowFeignClient;
|
||||
|
||||
@XxlJob("measurementPointJob")
|
||||
public void measurementPointJob() {
|
||||
BaseParam baseParam = new BaseParam();
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@XxlJob("orgJob")
|
||||
public void orgJob() {
|
||||
|
||||
}
|
||||
|
||||
@XxlJob("substationJob")
|
||||
public void substationJob() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user