Your Name
2023-05-31 b8e7bb1791ff41be5ee8150cc46af082d7444a65
java110-interface/src/main/java/com/java110/intf/report/IReportFeeMonthStatisticsInnerServiceSMO.java
@@ -6,6 +6,7 @@
import com.java110.dto.fee.FeeConfigDto;
import com.java110.dto.owner.OwnerDto;
import com.java110.dto.repair.RepairUserDto;
import com.java110.dto.report.QueryStatisticsDto;
import com.java110.dto.report.ReportDeposit;
import com.java110.dto.reportFeeMonthStatistics.ReportFeeMonthStatisticsDto;
import com.java110.po.reportFeeMonthStatistics.ReportFeeMonthStatisticsPo;
@@ -25,7 +26,7 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
@FeignClient(name = "${java110.report-service}", configuration = {FeignConfiguration.class})
@FeignClient(name = "report-service", configuration = {FeignConfiguration.class})
@RequestMapping("/reportFeeMonthStatisticsApi")
public interface IReportFeeMonthStatisticsInnerServiceSMO {
@@ -161,6 +162,25 @@
    @RequestMapping(value = "/queryFeeBreakdown", method = RequestMethod.POST)
    List<ReportFeeMonthStatisticsDto> queryFeeBreakdown(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询费用汇总表个数
     *
     * @param reportFeeMonthStatisticsDto
     * @return
     */
    @RequestMapping(value = "/queryFeeBreakdownDetailCount", method = RequestMethod.POST)
    int queryFeeBreakdownDetailCount(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询费用汇总表
     *
     * @param reportFeeMonthStatisticsDto
     * @return
     */
    @RequestMapping(value = "/queryFeeBreakdownDetail", method = RequestMethod.POST)
    List<ReportFeeMonthStatisticsDto> queryFeeBreakdownDetail(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    @RequestMapping(value = "/queryFeeBreakdownMajor", method = RequestMethod.POST)
    ReportFeeMonthStatisticsDto queryFeeBreakdownMajor(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
@@ -229,6 +249,7 @@
    @RequestMapping(value = "/queryOweFeeDetailMajor", method = RequestMethod.POST)
    ReportFeeMonthStatisticsDto queryOweFeeDetailMajor(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询费用汇总表个数
     *
@@ -394,6 +415,7 @@
    /**
     * 查询华宁物业 欠费总数
     *
     * @param reportFeeMonthStatisticsDto
     * @return
     */
@@ -402,6 +424,7 @@
    /**
     * 查询华宁物业 欠费明细 按楼栋 group by
     *
     * @param reportFeeMonthStatisticsDto
     * @return
     */
@@ -427,10 +450,11 @@
    List<Map> queryHuaningOweFeeDetail(@RequestBody Map paramInfo);
    /**
     *
     * @param ownerDto
     * @return
     */
    @RequestMapping(value = "/queryRoomAndParkingSpace", method = RequestMethod.POST)
    List<OwnerDto> queryRoomAndParkingSpace(@RequestBody OwnerDto ownerDto);
}