改个名字罢了

3.2.4.44
wyb 2 years ago
parent e07dbd234a
commit 25b1161928

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

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

@ -39,7 +39,7 @@ public class ApiTestController {
@ApiOperation(value = "获取任务测试")
@PostMapping("/getTaskTest")
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")
public void sdRyLisCollectJob() {
String reportQueryLisCollectorId = sdRyReportQueryConfig.getReportQueryLisCollectorId();
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoviewTaskByCollectorId(reportQueryLisCollectorId);
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoViewTaskByCollectorId(reportQueryLisCollectorId);
if (reportDownTwoDto == null) {
return;
}
@ -86,7 +86,7 @@ public class ReportJob {
@XxlJob("SdRyMzInspectCollectJob")
public void sdRyMzInspectCollectJob() {
String reportQueryMzInspectCollectorId = sdRyReportQueryConfig.getReportQueryMzInspectCollectorId();
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoviewTaskByCollectorId(reportQueryMzInspectCollectorId);
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoViewTaskByCollectorId(reportQueryMzInspectCollectorId);
if (reportDownTwoDto == null) {
return;
}
@ -111,7 +111,7 @@ public class ReportJob {
@XxlJob("SdRyZyInspectCollectJob")
public void sdRyZyInspectCollectJob() {
String reportQueryZyInspectCollectorId = sdRyReportQueryConfig.getReportQueryZyInspectCollectorId();
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoviewTaskByCollectorId(reportQueryZyInspectCollectorId);
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoViewTaskByCollectorId(reportQueryZyInspectCollectorId);
if (reportDownTwoDto == null) {
return;
}
@ -135,7 +135,7 @@ public class ReportJob {
@XxlJob("SdRyNurseInsertSugarCollectJob")
public void sdRyNurseInsertSugarCollectJob(){
String reportQueryNurseInsertSugarCollectorId = sdRyReportQueryConfig.getReportQueryNurseInsertSugarCollectorId();
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoviewTaskByCollectorId(reportQueryNurseInsertSugarCollectorId);
ReportDownTwoDto reportDownTwoDto = taskDistributeService.getNoViewTaskByCollectorId(reportQueryNurseInsertSugarCollectorId);
if (reportDownTwoDto==null) {
return;
}

Loading…
Cancel
Save