pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/intake/IntakeCtrl.java
@@ -69,6 +69,10 @@ */ @GetMapping(path = "used_intakes") public BaseResponse<List<VoOnLineIntake>> getUsedIntakes(Long operator) { if(operator == null || operator <= 0) { return BaseResponseUtils.buildErrorMsg("操作员不能为空"); } try { List<VoOnLineIntake> res = intakeSv.getUsedIntakes(operator); return BaseResponseUtils.buildSuccess(res);