package com.template.mapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.template.model.pojo.SmartCarAccess; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.template.model.vo.SmartCarAccessVo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; /** *

* Mapper 接口 *

* * @author ceshi * @since 2024-02-23 */ @Repository public interface SmartCarAccessMapper extends BaseMapper { IPage getPage(Page page, @Param("keyWord") String keyWord,@Param("type") String type,@Param("startTime") String startTime,@Param("endTime") String endTime); }