zhubaomin
2025-04-14 b3b17b231e2f2840332ce6eb96f791865fdec6d5
pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/irrigation/IrrigationCtrl.java
@@ -36,10 +36,9 @@
     * @return
     */
    @GetMapping(path = "/getSimpleProjects")
    public BaseResponse<QueryResultVo<List<VoProjectSimple>>> getSimpleProjects(QoProject qo) {
    public BaseResponse<List<VoProjectSimple>> getSimpleProjects(QoProject qo) {
        try {
            QueryResultVo<List<VoProjectSimple>> res = irrigationSv.getSimpleProjects(qo);
            return BaseResponseUtils.buildSuccess(res);
            return BaseResponseUtils.buildSuccess(irrigationSv.getSimpleProjects(qo));
        } catch (Exception e) {
            log.error("获取项目记录异常", e);
            return BaseResponseUtils.buildException(e.getMessage());
@@ -51,7 +50,6 @@
        if(qo.getProjectId() == null) {
            return BaseResponseUtils.buildErrorMsg("请选择项目");
        }
        try {
            QueryResultVo<List<VoGroupSimple>> res = irrigationSv.getSimpleGroups(qo);