java110
2021-12-12 7c218db815714879a2c2ac8a03b571adfad5ebcf
java110-interface/src/main/java/com/java110/intf/report/IReportFeeMonthStatisticsInnerServiceSMO.java
@@ -4,7 +4,9 @@
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.RoomDto;
import com.java110.dto.fee.FeeConfigDto;
import com.java110.dto.owner.OwnerDto;
import com.java110.dto.repair.RepairUserDto;
import com.java110.dto.report.ReportDeposit;
import com.java110.dto.reportFeeMonthStatistics.ReportFeeMonthStatisticsDto;
import com.java110.po.reportFeeMonthStatistics.ReportFeeMonthStatisticsPo;
import org.springframework.cloud.openfeign.FeignClient;
@@ -13,6 +15,7 @@
import org.springframework.web.bind.annotation.RequestMethod;
import java.util.List;
import java.util.Map;
/**
 * @ClassName IReportFeeMonthStatisticsInnerServiceSMO
@@ -22,7 +25,7 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
@FeignClient(name = "report-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.report-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/reportFeeMonthStatisticsApi")
public interface IReportFeeMonthStatisticsInnerServiceSMO {
@@ -74,6 +77,15 @@
    List<ReportFeeMonthStatisticsDto> queryReportFeeSummary(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询费用汇总表 大计
     *
     * @param reportFeeMonthStatisticsDto
     * @return
     */
    @RequestMapping(value = "/queryReportFeeSummaryMajor", method = RequestMethod.POST)
    ReportFeeMonthStatisticsDto queryReportFeeSummaryMajor(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询费用汇总表个数
     *
     * @param reportFeeMonthStatisticsDto
@@ -90,6 +102,9 @@
     */
    @RequestMapping(value = "/queryReportFloorUnitFeeSummary", method = RequestMethod.POST)
    List<ReportFeeMonthStatisticsDto> queryReportFloorUnitFeeSummary(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    @RequestMapping(value = "/queryReportFloorUnitFeeSummaryMajor", method = RequestMethod.POST)
    ReportFeeMonthStatisticsDto queryReportFloorUnitFeeSummaryMajor(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询费用汇总表个数
@@ -108,6 +123,9 @@
     */
    @RequestMapping(value = "/queryFeeBreakdown", method = RequestMethod.POST)
    List<ReportFeeMonthStatisticsDto> queryFeeBreakdown(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    @RequestMapping(value = "/queryFeeBreakdownMajor", method = RequestMethod.POST)
    ReportFeeMonthStatisticsDto queryFeeBreakdownMajor(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询费用汇总表个数
@@ -172,6 +190,8 @@
    @RequestMapping(value = "/queryOweFeeDetail", method = RequestMethod.POST)
    List<ReportFeeMonthStatisticsDto> queryOweFeeDetail(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    @RequestMapping(value = "/queryOweFeeDetailMajor", method = RequestMethod.POST)
    ReportFeeMonthStatisticsDto queryOweFeeDetailMajor(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询费用汇总表个数
     *
@@ -318,4 +338,62 @@
     */
    @RequestMapping(value = "/queryNoFeeRooms", method = RequestMethod.POST)
    List<RoomDto> queryNoFeeRooms(@RequestBody RoomDto roomDto);
    /**
     * 查询押金
     *
     * @param reportDeposit
     * @return
     */
    @RequestMapping(value = "/queryFeeDeposit", method = RequestMethod.POST)
    List<ReportDeposit> queryPayFeeDeposit(@RequestBody ReportDeposit reportDeposit);
    /**
     * 查询押金退费总金额
     */
    @RequestMapping(value = "/queryFeeDepositAmount", method = RequestMethod.POST)
    List<ReportDeposit> queryFeeDepositAmount(@RequestBody ReportDeposit reportDeposit);
    /**
     * 查询华宁物业 欠费总数
     * @param reportFeeMonthStatisticsDto
     * @return
     */
    @RequestMapping(value = "/queryHuaningOweFeeCount", method = RequestMethod.POST)
    int queryHuaningOweFeeCount(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    /**
     * 查询华宁物业 欠费明细 按楼栋 group by
     * @param reportFeeMonthStatisticsDto
     * @return
     */
    @RequestMapping(value = "/queryHuaningOweFee", method = RequestMethod.POST)
    List<ReportFeeMonthStatisticsDto> queryHuaningOweFee(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
    @RequestMapping(value = "/queryHuaningPayFeeCount", method = RequestMethod.POST)
    int queryHuaningPayFeeCount(@RequestBody Map paramInfo);
    @RequestMapping(value = "/queryHuaningPayFee", method = RequestMethod.POST)
    List<Map> queryHuaningPayFee(@RequestBody Map paramInfo);
    @RequestMapping(value = "/queryHuaningPayFeeTwoCount", method = RequestMethod.POST)
    int queryHuaningPayFeeTwoCount(@RequestBody Map paramInfo);
    @RequestMapping(value = "/queryHuaningPayFeeTwo", method = RequestMethod.POST)
    List<Map> queryHuaningPayFeeTwo(@RequestBody Map paramInfo);
    @RequestMapping(value = "/queryHuaningOweFeeDetailCount", method = RequestMethod.POST)
    int queryHuaningOweFeeDetailCount(@RequestBody Map paramInfo);
    @RequestMapping(value = "/queryHuaningOweFeeDetail", method = RequestMethod.POST)
    List<Map> queryHuaningOweFeeDetail(@RequestBody Map paramInfo);
    /**
     *
     * @param ownerDto
     * @return
     */
    @RequestMapping(value = "/queryRoomAndParkingSpace", method = RequestMethod.POST)
    List<OwnerDto> queryRoomAndParkingSpace(@RequestBody OwnerDto ownerDto);
}