| | |
| | | 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.Car; |
| | | import com.ruoyi.system.query.CarListReq; |
| | | import com.ruoyi.system.query.CarListResp; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/3/17 11:37 |
| | | */ |
| | | public interface CarMapper extends BaseMapper<Car> { |
| | | |
| | | |
| | | /** |
| | | * 获取车辆列表数据 |
| | | * |
| | | * @param pageInfo |
| | | * @param carListReq |
| | | * @return |
| | | */ |
| | | PageInfo<CarListResp> getCarList(PageInfo<CarListResp> pageInfo, @Param("item") CarListReq carListReq); |
| | | } |