| | |
| | | reportFeeMonthStatisticsDto.setRoomNum(roomNum); |
| | | reportFeeMonthStatisticsDto.setConfigId(configId); |
| | | reportFeeMonthStatisticsDto.setFeeTypeCd(feeTypeCd); |
| | | reportFeeMonthStatisticsDto.setStartTime(startTime); |
| | | reportFeeMonthStatisticsDto.setEndTime(endTime); |
| | | if (!StringUtil.isEmpty(startTime)) { |
| | | reportFeeMonthStatisticsDto.setStartTime(startTime + " 00:00:00"); |
| | | } |
| | | if (!StringUtil.isEmpty(endTime)) { |
| | | reportFeeMonthStatisticsDto.setEndTime(endTime + " 23:59:59"); |
| | | } |
| | | return getReportFeeMonthStatisticsBMOImpl.queryFeeBreakdown(reportFeeMonthStatisticsDto); |
| | | } |
| | | |