新增根据门店分页查询车型列表

This commit is contained in:
2025-07-12 21:23:57 +08:00
parent d8b738ff93
commit 9f9745f788
16 changed files with 367 additions and 11 deletions

View File

@ -0,0 +1,23 @@
package com.sczx.car.mapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.sczx.car.dto.CarModelSimpleDTO;
import com.sczx.car.dto.req.StoreCarModelReq;
import com.sczx.car.po.CarModelPO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
/**
* <p>
* 车型表 Mapper 接口
* </p>
*
* @author zhangli
* @since 2025-07-12 19:55:31
*/
public interface CarModelMapper extends BaseMapper<CarModelPO> {
IPage<CarModelSimpleDTO> pageCarModelSimpleDTO(Page<CarModelSimpleDTO> page, @Param("storeCarModelReq") StoreCarModelReq storeCarModelReq);
}