pipIrr-platform/pipIrr-web/pipIrr-web-project/src/main/java/com/dy/pipIrrProject/intake/IntakeCtrl.java
@@ -106,10 +106,11 @@ @GetMapping(path = "one") @SsoAop() public BaseResponse<VoAllIntake> one(@RequestParam("id") Long id) { if (this.intakeSv.selectById(id) == null) { VoAllIntake po = this.intakeSv.selectById(id) ; if (po == null) { return BaseResponseUtils.buildErrorMsg(ProjectResultCode.NO_INTAKES.getMessage()); } else { return BaseResponseUtils.buildSuccess(this.intakeSv.selectById(id)); return BaseResponseUtils.buildSuccess(po); } }