| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import com.ruoyi.system.api.model.Driver; |
| | | import com.ruoyi.system.query.DriverListReq; |
| | | import com.ruoyi.system.query.DriverListResp; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/3/17 16:25 |
| | | */ |
| | | public interface DriverMapper extends BaseMapper<Driver> { |
| | | |
| | | |
| | | /** |
| | | * 获取司机列表数据 |
| | | * |
| | | * @param pageInfo |
| | | * @param driverListReq |
| | | * @return |
| | | */ |
| | | PageInfo<DriverListResp> getDriverList(PageInfo<DriverListResp> pageInfo, @Param("item") DriverListReq driverListReq); |
| | | } |