| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.dto.BillStatisticsDto; |
| | | import com.ruoyi.system.dto.CachPayDto; |
| | | import com.ruoyi.system.dto.OfflinePayCheckDto; |
| | | import com.ruoyi.system.dto.SmsByBillDto; |
| | | import com.ruoyi.system.dto.TBillDto; |
| | | import com.ruoyi.system.dto.TbillSaveDto; |
| | | import com.ruoyi.system.model.TBill; |
| | | import com.ruoyi.system.query.TBillQuery; |
| | | import com.ruoyi.system.vo.ScreenRentRankVO; |
| | | import com.taxi591.bankapi.dto.ChargeBillRequest; |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.function.Consumer; |
| | | import java.util.function.Function; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | public interface TBillService extends IService<TBill> { |
| | | |
| | | PageInfo<TBillDto> queryPage(TBillQuery query); |
| | | |
| | | |
| | | PageInfo<TBillDto> queryPageForApplet(TBillQuery query); |
| | | |
| | | /** |
| | | * |
| | |
| | | * @param invoiceId |
| | | * @return |
| | | */ |
| | | PageInfo<TBill> getBillByInvoiceId(String invoiceId); |
| | | PageInfo<TBillDto> getBillByInvoiceId(String invoiceId); |
| | | |
| | | Integer sendSmsByBillIds(SmsByBillDto dto); |
| | | |
| | | Integer sendMailBatchByBillIds(SmsByBillDto dto); |
| | | |
| | | TBillDto getDetailByBillId(@NotEmpty String id); |
| | | |
| | | Boolean cashPay(CachPayDto offlinePayDto); |
| | | |
| | | BillStatisticsDto statistics(TBillQuery query); |
| | | |
| | | Integer batchBillCount(String userId, List<String> billIds); |
| | | |
| | | /** |
| | | * 查询街道租金排行 |
| | | * @return |
| | | */ |
| | | 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); |
| | | } |