puzhibing
2023-03-18 c0f0b2825ed3dbef86b381c2490277164446dc10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.supersavedriving.driver.modular.system.service;
 
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;
}