Explorar el Código

Merge branch 'develop' of gitadmin/tuoheng_freeway into release

tags/v1.0.0^2
wanjing hace 1 año
padre
commit
4732f869df
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/service/third/dsp/DspCallbackServiceImpl.java

+ 2
- 1
tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/service/third/dsp/DspCallbackServiceImpl.java Ver fichero

@@ -80,8 +80,9 @@ public class DspCallbackServiceImpl implements IDspCallbackService {
Inspection inspection = inspectionMapper.selectOne(new LambdaQueryWrapper<Inspection>()
.eq(Inspection::getId, inspectionId)
.eq(Inspection::getTenantId, business.getTenantId()));
log.info("任务, inspection:{}", inspection);
if (ObjectUtil.isNull(inspection)) {
log.info("巡检任务不存在");
log.info("任务不存在");
throw new ServiceException(0, "巡检任务不存在");
}
log.info("巡检任务查询成功,分析状态为:{}", dspCallbackRequest.getAnalyseStatus());

Cargando…
Cancelar
Guardar