| | |
| | | public int deleteReportFeeMonthStatistics(@RequestBody ReportFeeMonthStatisticsPo reportFeeMonthStatisticsPo) { |
| | | int saveFlag = 1; |
| | | reportFeeMonthStatisticsPo.setStatusCd("1"); |
| | | reportFeeMonthStatisticsServiceDaoImpl.updateReportFeeMonthStatisticsInfo(BeanConvertUtil.beanCovertMap(reportFeeMonthStatisticsPo)); |
| | | reportFeeMonthStatisticsServiceDaoImpl.deleteReportFeeMonthStatisticsInfo(BeanConvertUtil.beanCovertMap(reportFeeMonthStatisticsPo)); |
| | | return saveFlag; |
| | | } |
| | | |
| | |
| | | |
| | | @Override |
| | | public List<ReportFeeMonthStatisticsDto> queryAllPayFeeDetail(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto) { |
| | | List<ReportFeeMonthStatisticsDto> reportFeeMonthStatisticss = BeanConvertUtil.covertBeanList(reportFeeMonthStatisticsServiceDaoImpl.queryAllPayFeeDetail(BeanConvertUtil.beanCovertMap(reportFeeMonthStatisticsDto)), ReportFeeMonthStatisticsDto.class); |
| | | List<ReportFeeMonthStatisticsDto> reportFeeMonthStatisticss = BeanConvertUtil.covertBeanList( |
| | | reportFeeMonthStatisticsServiceDaoImpl.queryAllPayFeeDetail(BeanConvertUtil.beanCovertMap(reportFeeMonthStatisticsDto)), |
| | | ReportFeeMonthStatisticsDto.class); |
| | | |
| | | return reportFeeMonthStatisticss; |
| | | } |
| | |
| | | if (page != PageDto.DEFAULT_PAGE) { |
| | | paramInfo.put("page",(page - 1) * (int)paramInfo.get("row")); |
| | | } |
| | | List<Map> deposits = reportFeeMonthStatisticsServiceDaoImpl.queryHuaningPayFee(BeanConvertUtil.beanCovertMap(paramInfo)); |
| | | List<Map> deposits = reportFeeMonthStatisticsServiceDaoImpl.queryHuaningPayFee(paramInfo); |
| | | return deposits; |
| | | } |
| | | @Override |
| | |
| | | if (page != PageDto.DEFAULT_PAGE) { |
| | | paramInfo.put("page",(page - 1) * (int)paramInfo.get("row")); |
| | | } |
| | | List<Map> deposits = reportFeeMonthStatisticsServiceDaoImpl.queryHuaningPayFeeTwo(BeanConvertUtil.beanCovertMap(paramInfo)); |
| | | List<Map> deposits = reportFeeMonthStatisticsServiceDaoImpl.queryHuaningPayFeeTwo(paramInfo); |
| | | return deposits; |
| | | } |
| | | |
| | | @Override |
| | | public int queryHuaningOweFeeDetailCount(@RequestBody Map paramInfo) { |
| | | return reportFeeMonthStatisticsServiceDaoImpl.queryHuaningOweFeeDetailCount(paramInfo); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryHuaningOweFeeDetail(@RequestBody Map paramInfo) { |
| | | int page = (int)paramInfo.get("page"); |
| | | |
| | | if (page != PageDto.DEFAULT_PAGE) { |
| | | paramInfo.put("page",(page - 1) * (int)paramInfo.get("row")); |
| | | } |
| | | List<Map> deposits = reportFeeMonthStatisticsServiceDaoImpl.queryHuaningOweFeeDetail(paramInfo); |
| | | return deposits; |
| | | } |
| | | |