改个名字罢了

3.2.4.44
wyb 2 years ago
parent e07dbd234a
commit 25b1161928

@ -17,5 +17,5 @@ public interface TaskDistributeService {
* @param collectorId * @param collectorId
* @return * @return
*/ */
ReportDownTwoDto getNoviewTaskByCollectorId(String collectorId); ReportDownTwoDto getNoViewTaskByCollectorId(String collectorId);
} }

@ -26,7 +26,7 @@ public class TaskDistributeServiceImpl implements TaskDistributeService {
@Override @Override
public ReportDownTwoDto getNoviewTaskByCollectorId(String collectorId) { public ReportDownTwoDto getNoViewTaskByCollectorId(String collectorId) {
String getTaskUrl = applicationBusinessConfig.getGetTaskUrl(); String getTaskUrl = applicationBusinessConfig.getGetTaskUrl();
if (Func.isBlank(getTaskUrl)) { if (Func.isBlank(getTaskUrl)) {
log.warn("获取任务信息地址未配置!"); log.warn("获取任务信息地址未配置!");

@ -39,7 +39,7 @@ public class ApiTestController {
@ApiOperation(value = "获取任务测试") @ApiOperation(value = "获取任务测试")
@PostMapping("/getTaskTest") @PostMapping("/getTaskTest")
public CommonResult<Object> getTaskTest(@RequestParam("collectorId") String collectorId) { public CommonResult<Object> getTaskTest(@RequestParam("collectorId") String collectorId) {
return CommonResult.success(taskDistributeService.getNoviewTaskByCollectorId(collectorId)); return CommonResult.success(taskDistributeService.getNoViewTaskByCollectorId(collectorId));
} }

@ -61,7 +61,7 @@ public class ReportJob {
@XxlJob("SdRyLisCollectJob") @XxlJob("SdRyLisCollectJob")
public void sdRyLisCollectJob() { public void sdRyLisCollectJob() {
String reportQueryLisCollectorId = sdRyReportQueryConfig.getReportQueryLisCollectorId(); String reportQueryLisCollectorId = sdRyReportQueryConfig.getReportQueryLisCollectorId();
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoviewTaskByCollectorId(reportQueryLisCollectorId); ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoViewTaskByCollectorId(reportQueryLisCollectorId);
if (reportDownTwoDto == null) { if (reportDownTwoDto == null) {
return; return;
} }
@ -86,7 +86,7 @@ public class ReportJob {
@XxlJob("SdRyMzInspectCollectJob") @XxlJob("SdRyMzInspectCollectJob")
public void sdRyMzInspectCollectJob() { public void sdRyMzInspectCollectJob() {
String reportQueryMzInspectCollectorId = sdRyReportQueryConfig.getReportQueryMzInspectCollectorId(); String reportQueryMzInspectCollectorId = sdRyReportQueryConfig.getReportQueryMzInspectCollectorId();
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoviewTaskByCollectorId(reportQueryMzInspectCollectorId); ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoViewTaskByCollectorId(reportQueryMzInspectCollectorId);
if (reportDownTwoDto == null) { if (reportDownTwoDto == null) {
return; return;
} }
@ -111,7 +111,7 @@ public class ReportJob {
@XxlJob("SdRyZyInspectCollectJob") @XxlJob("SdRyZyInspectCollectJob")
public void sdRyZyInspectCollectJob() { public void sdRyZyInspectCollectJob() {
String reportQueryZyInspectCollectorId = sdRyReportQueryConfig.getReportQueryZyInspectCollectorId(); String reportQueryZyInspectCollectorId = sdRyReportQueryConfig.getReportQueryZyInspectCollectorId();
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoviewTaskByCollectorId(reportQueryZyInspectCollectorId); ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoViewTaskByCollectorId(reportQueryZyInspectCollectorId);
if (reportDownTwoDto == null) { if (reportDownTwoDto == null) {
return; return;
} }
@ -135,7 +135,7 @@ public class ReportJob {
@XxlJob("SdRyNurseInsertSugarCollectJob") @XxlJob("SdRyNurseInsertSugarCollectJob")
public void sdRyNurseInsertSugarCollectJob(){ public void sdRyNurseInsertSugarCollectJob(){
String reportQueryNurseInsertSugarCollectorId = sdRyReportQueryConfig.getReportQueryNurseInsertSugarCollectorId(); String reportQueryNurseInsertSugarCollectorId = sdRyReportQueryConfig.getReportQueryNurseInsertSugarCollectorId();
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoviewTaskByCollectorId(reportQueryNurseInsertSugarCollectorId); ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoViewTaskByCollectorId(reportQueryNurseInsertSugarCollectorId);
if (reportDownTwoDto==null) { if (reportDownTwoDto==null) {
return; return;
} }

Loading…
Cancel
Save