zhubaomin
3 天以前 02faa2bb05b3cdb50ee1f56ae4c9a1282e9f9c44
pipIrr-platform/pipIrr-web/pipIrr-web-terminal/src/main/java/com/dy/pipIrrTerminal/client/ClientCtrl.java
@@ -64,4 +64,19 @@
            return BaseResponseUtils.buildException(e.getMessage()) ;
        }
    }
    /**
     * 获取水价
     * @return
     */
    @GetMapping(path = "getWaterPrice")
    @SsoAop()
    public BaseResponse<Boolean> getWaterPrice(){
        try {
            return BaseResponseUtils.buildSuccess(clientSv.getWaterPrice());
        } catch (Exception e) {
            log.error("查询农户异常", e);
            return BaseResponseUtils.buildException(e.getMessage()) ;
        }
    }
}