| | |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @ClassName IReportFeeStatisticsInnerServiceSMO |
| | |
| | | |
| | | /** |
| | | * 查询当月欠费 |
| | | * |
| | | * @param queryFeeStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询当月应收 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 欠费户数 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询收费房屋数 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/getFeeRoomCount", method = RequestMethod.POST) |
| | | long getFeeRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 楼栋收费率信息统计 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/getFloorFeeSummary", method = RequestMethod.POST) |
| | | List<Map> getFloorFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 费用项收费率统计 |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/getConfigFeeSummary", method = RequestMethod.POST) |
| | | List<Map> getConfigFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | @RequestMapping(value = "/getObjFeeSummaryCount", method = RequestMethod.POST) |
| | | int getObjFeeSummaryCount(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | @RequestMapping(value = "/getObjFeeSummary", method = RequestMethod.POST) |
| | | List<Map> getObjFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto); |
| | | } |