pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/client/ClientCtrl.java
@@ -298,4 +298,22 @@ } } /** * 最近未充值的农户 * * @param qo * @return */ @GetMapping(path = "/getNotRechargeLastClients") @SsoAop() public BaseResponse<QueryResultVo<List<VoClient>>> getNotRechargeLastClients(CommonQO qo) { try { QueryResultVo<List<VoClient>> res = clientSv.getNotRechargeLastClients(qo); return BaseResponseUtils.buildSuccess(res); }catch (Exception e){ log.error("获取记录异常", e); return BaseResponseUtils.buildException(e.getMessage()); } } }