Your Name
2023-07-04 d3e23e26fcfc17e770fca7c29b290ef5082e5734
service-report/src/main/java/com/java110/report/statistics/IFeeStatistics.java
@@ -28,6 +28,7 @@
    /**
     * 查询欠费
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -70,6 +71,7 @@
    /**
     * 查询收费房屋数
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -77,6 +79,7 @@
    /**
     * 查询楼栋费用统计信息
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -84,6 +87,7 @@
    /**
     * 费用项 费用统计信息
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -91,6 +95,7 @@
    /**
     * 查询对象明细表(数量)
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -98,6 +103,7 @@
    /**
     * 查询对象明细表
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -105,6 +111,7 @@
    /**
     * 查询业主对象明细表
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -112,6 +119,7 @@
    /**
     * 优惠金额
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -119,6 +127,7 @@
    /**
     * 滞纳金
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -126,6 +135,7 @@
    /**
     * 预存账户
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -133,6 +143,7 @@
    /**
     * 扣款账户
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -140,6 +151,7 @@
    /**
     * 查询临时车费用收入
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -147,6 +159,7 @@
    /**
     * 查询退款押金
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -154,6 +167,7 @@
    /**
     * 退款订单数
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -161,6 +175,7 @@
    /**
     * 退款金额
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -169,6 +184,7 @@
    /**
     * 充电桩充电金额
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -176,8 +192,60 @@
    /**
     * 按楼栋计算实收
     *
     * @param queryStatisticsDto
     * @return
     */
    List<Map> getReceivedFeeByFloor(QueryStatisticsDto queryStatisticsDto);
    /**
     * 查询 收款方式统计
     *
     * @param queryStatisticsDto
     * @return
     */
    List<Map> getReceivedFeeByPrimeRate(QueryStatisticsDto queryStatisticsDto);
    /**
     * 根据楼栋查询欠费信息
     *
     * @param queryStatisticsDto
     * @return
     */
    List<Map> getOweFeeByFloor(QueryStatisticsDto queryStatisticsDto);
    /**
     * 计算对象欠费明细
     *
     * @param queryStatisticsDto
     * @return
     */
    List<Map> getObjOweFee(QueryStatisticsDto queryStatisticsDto);
    long getReceivedRoomCount(QueryStatisticsDto queryStatisticsDto);
    double getReceivedRoomAmount(QueryStatisticsDto queryStatisticsDto);
    long getHisOweReceivedRoomCount(QueryStatisticsDto queryStatisticsDto);
    double getHisOweReceivedRoomAmount(QueryStatisticsDto queryStatisticsDto);
    /**
     * 查询实收
     * @param queryStatisticsDto
     * @return
     */
    List<Map> getObjReceivedFee(QueryStatisticsDto queryStatisticsDto);
    long getMonthReceivedDetailCount(QueryStatisticsDto queryStatisticsDto);
    List<Map> getMonthReceivedDetailInfo(QueryStatisticsDto queryStatisticsDto);
    long getMonthOweDetailCount(QueryStatisticsDto queryStatisticsDto);
    List<Map> getMonthOweDetailInfo(QueryStatisticsDto queryStatisticsDto);
    double getMonthOweDetailAmount(QueryStatisticsDto queryStatisticsDto);
    double getMonthReceivedDetailAmount(QueryStatisticsDto queryStatisticsDto);
}