| | |
| | | import com.java110.utils.util.StringUtil; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.Calendar; |
| | | import java.util.HashMap; |
| | |
| | | @RequestParam(value = "roomNum", required = false) String roomNum, |
| | | @RequestParam(value = "startTime", required = false) String startTime, |
| | | @RequestParam(value = "endTime", required = false) String endTime, |
| | | @RequestParam(value = "configIds", required = false) String configIds, |
| | | @RequestParam(value = "page") int page, |
| | | @RequestParam(value = "row") int row) { |
| | | ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto = new ReportFeeMonthStatisticsDto(); |
| | |
| | | reportFeeMonthStatisticsDto.setRoomNum(roomNum); |
| | | reportFeeMonthStatisticsDto.setStartTime(startTime); |
| | | reportFeeMonthStatisticsDto.setEndTime(endTime); |
| | | if (!StringUtil.isEmpty(configIds)) { |
| | | reportFeeMonthStatisticsDto.setConfigIds(configIds.split(",")); |
| | | } |
| | | return getReportFeeMonthStatisticsBMOImpl.queryReportFeeSummary(reportFeeMonthStatisticsDto); |
| | | } |
| | | |
| | |
| | | paramInfo.put("row", row); |
| | | return getReportFeeMonthStatisticsBMOImpl.queryHuaningPayFee(paramInfo); |
| | | } |
| | | |
| | | /** |
| | | * 查询华宁物业 欠费统计报表 |
| | | * 作者: 吴学文 |
| | |
| | | paramInfo.put("row", row); |
| | | return getReportFeeMonthStatisticsBMOImpl.queryHuaningPayFeeTwo(paramInfo); |
| | | } |
| | | |
| | | /** |
| | | * 查询华宁物业 欠费统计报表 |
| | | * 作者: 吴学文 |