| | |
| | | |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.supersavedriving.driver.modular.system.model.Revenue; |
| | | import com.supersavedriving.driver.modular.system.warpper.CommissionListWarpper; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface IRevenueService extends IService<Revenue> { |
| | | |
| | | |
| | | /** |
| | | * 获取司机佣金记录 |
| | | * @param driverId |
| | | * @param time |
| | | * @param pageNum |
| | | * @param pageSize |
| | | * @return |
| | | */ |
| | | List<CommissionListWarpper> queryCommissionList(Integer driverId, String time, Integer pageNum, Integer pageSize) throws Exception; |
| | | } |