| 123456789101112131415161718192021222324 |
- 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;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author ceshi
- * @since 2024-02-23
- */
- @Repository
- public interface SmartCarAccessMapper extends BaseMapper<SmartCarAccess> {
- IPage<SmartCarAccessVo> getPage(Page<SmartCarAccessVo> page, @Param("keyWord") String keyWord,@Param("type") String type,@Param("startTime") String startTime,@Param("endTime") String endTime);
- }
|