| | |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.function.Consumer; |
| | | |
| | |
| | | public interface TBillService extends IService<TBill> { |
| | | |
| | | PageInfo<TBillDto> queryPage(TBillQuery query); |
| | | |
| | | |
| | | PageInfo<TBillDto> queryPageForApplet(TBillQuery query); |
| | | |
| | | /** |
| | | * |
| | |
| | | |
| | | Boolean cashPay(CachPayDto offlinePayDto); |
| | | |
| | | BillStatisticsDto statistics(); |
| | | BillStatisticsDto statistics(TBillQuery query); |
| | | |
| | | Integer batchBillCount(String userId, List<String> billIds); |
| | | |
| | |
| | | * 查询街道租金排行 |
| | | * @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); |
| | | } |