| | |
| | | public void updatePayFeeDetailMonthInfo(Map info) throws DAOException { |
| | | logger.debug("修改月缴费表信息Instance 入参 info : {}", info); |
| | | |
| | | int saveFlag = sqlSessionTemplate.update("payFeeDetailMonthServiceDaoImpl.updatePayFeeDetailMonthInfo", info); |
| | | sqlSessionTemplate.update("payFeeDetailMonthServiceDaoImpl.updatePayFeeDetailMonthInfo", info); |
| | | |
| | | if (saveFlag < 1) { |
| | | throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改月缴费表信息Instance数据失败:" + JSONObject.toJSONString(info)); |
| | | } |
| | | // if (saveFlag < 1) { |
| | | // throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改月缴费表信息Instance数据失败:" + JSONObject.toJSONString(info)); |
| | | // } |
| | | } |
| | | |
| | | /** |
| | |
| | | return businessPayFeeDetailMonthInfos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getWaitDispersedFeeDetail(Map info) { |
| | | logger.debug("查询getWaitDispersedFeeDetail信息 入参 info : {}", info); |
| | | |
| | | List<Map> businessPayFeeDetailMonthInfos = sqlSessionTemplate.selectList("payFeeDetailMonthServiceDaoImpl.getWaitDispersedFeeDetail", info); |
| | | |
| | | return businessPayFeeDetailMonthInfos; |
| | | } |
| | | |
| | | @Override |
| | | public void deletePayFeeDetailMonthInfo(Map info) { |
| | | sqlSessionTemplate.update("payFeeDetailMonthServiceDaoImpl.deletePayFeeDetailMonthInfo", info); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryPagePayFeeDetailMonths(Map info) { |
| | | logger.debug("查询 queryPagePayFeeDetailMonths 信息 入参 info : {}", info); |
| | | |
| | | List<Map> infos = sqlSessionTemplate.selectList("payFeeDetailMonthServiceDaoImpl.queryPagePayFeeDetailMonths", info); |
| | | |
| | | return infos; |
| | | } |
| | | |
| | | /** |
| | | * 查询月缴费表数量 |
| | | * |
| | | * @param info 月缴费表信息 |
| | | * @return 月缴费表数量 |
| | | */ |
| | | @Override |
| | | public int queryPagePayFeeDetailMonthsCount(Map info) { |
| | | logger.debug("查询月缴费表数据 入参 info : {}", info); |
| | | |
| | | List<Map> businessPayFeeDetailMonthInfos = sqlSessionTemplate.selectList("payFeeDetailMonthServiceDaoImpl.queryPagePayFeeDetailMonthsCount", info); |
| | | if (businessPayFeeDetailMonthInfos.size() < 1) { |
| | | return 0; |
| | | } |
| | | |
| | | return Integer.parseInt(businessPayFeeDetailMonthInfos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | |
| | | } |