xuhy
2025-04-27 5fa6e6f8410ef9d057174bcff2a3c5038c54a551
ruoyi-system/src/main/java/com/ruoyi/system/service/TBillService.java
@@ -15,6 +15,7 @@
import javax.validation.constraints.NotEmpty;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import java.util.function.Consumer;
@@ -29,6 +30,9 @@
public interface TBillService extends IService<TBill> {
    PageInfo<TBillDto> queryPage(TBillQuery query);
    PageInfo<TBillDto> queryPageForApplet(TBillQuery query);
    /**
     *
@@ -87,7 +91,7 @@
    Boolean cashPay(CachPayDto offlinePayDto);
    BillStatisticsDto statistics();
    BillStatisticsDto statistics(TBillQuery query);
    Integer batchBillCount(String userId, List<String> billIds);
@@ -95,5 +99,23 @@
     * 查询街道租金排行
     * @return
     */
    List<ScreenRentRankVO> getStreetRentRank();
    List<ScreenRentRankVO> getStreetRentRank(String businessDeptId);
    /**
     * 查询季付账单
     * @param businessDeptId
     * @return
     */
    List<TBill> getJiFuBillList(String businessDeptId);
    /**
     * 查询当前季度的季付账单
     * @param businessDeptId
     * @param first
     * @param last
     * @return
     */
    List<TBill> getJiFuBillListByTime(String businessDeptId, Date first, Date last);
    void editAmount(TbillSaveDto bill);
}