pipIrr-platform/pipIrr-web/pipIrr-web-irrigate/src/main/java/com/dy/pipIrrIrrigate/irrigateGroup/IrrigateGroupCtrl.java
@@ -541,6 +541,26 @@ } /** * 获取项目下轮灌组 * @param qo * @return */ @GetMapping(path = "/getGroupsByProjectId") @SsoAop() public BaseResponse<List<VoGroupSimple>> getGroupsByProjectId(QoGroup qo) { if(qo.getProjectId() == null) { return BaseResponseUtils.buildErrorMsg("请选择项目"); } try { return BaseResponseUtils.buildSuccess(irrigateGroupSv.getGroupsByProjectId(qo)); } catch (Exception e) { log.error("获取轮灌组记录异常", e); return BaseResponseUtils.buildException(e.getMessage()); } } /** * 获取全部轮灌组,新代码 * @return */