java110
2023-05-17 0e0e1f080d4a986ca75cde7cf5d23b2f8539fb10
java110-interface/src/main/java/com/java110/intf/report/IReportFeeStatisticsInnerServiceSMO.java
@@ -12,6 +12,7 @@
import org.springframework.web.bind.annotation.RequestMethod;
import java.util.List;
import java.util.Map;
/**
 * @ClassName IReportFeeStatisticsInnerServiceSMO
@@ -36,6 +37,7 @@
    /**
     * 查询当月欠费
     *
     * @param queryFeeStatisticsDto
     * @return
     */
@@ -45,6 +47,7 @@
    /**
     * 查询当月应收
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -62,6 +65,7 @@
    /**
     * 欠费户数
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -70,9 +74,33 @@
    /**
     * 查询收费房屋数
     *
     * @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);
}