liurunyu
2025-02-05 6dacac48ebb596797dfd8e5bf3a803ed0b583643
pipIrr-platform/pipIrr-web/pipIrr-web-base/src/main/java/com/dy/pipIrrBase/allRound/Ar4BaseCtrl.java
@@ -54,11 +54,11 @@
    })
    @GetMapping(path = "intakeInfo")
    @SsoAop()
    public BaseResponse<QueryResultVo<VoArIntakeBase>> intakeInfo(Long intakeId) {
    public BaseResponse<VoArIntakeBase> intakeInfo(Long intakeId) {
        if (intakeId == null || intakeId.longValue() == 0L) {
            return BaseResponseUtils.buildException("取水口id不能为空");
        }
        QueryResultVo<VoArIntakeBase> res = this.sv.intakeInfo(intakeId);
        VoArIntakeBase res = this.sv.intakeInfo(intakeId);
        return BaseResponseUtils.buildSuccess(res);
    }
}