| | |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.function.Consumer; |
| | | |
| | |
| | | * 查询街道租金排行 |
| | | * @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); |
| | | } |