SmartCarAccessMapper.java 765 B

123456789101112131415161718192021222324
  1. package com.template.mapper;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.template.model.pojo.SmartCarAccess;
  5. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  6. import com.template.model.vo.SmartCarAccessVo;
  7. import org.apache.ibatis.annotations.Param;
  8. import org.springframework.stereotype.Repository;
  9. /**
  10. * <p>
  11. * Mapper 接口
  12. * </p>
  13. *
  14. * @author ceshi
  15. * @since 2024-02-23
  16. */
  17. @Repository
  18. public interface SmartCarAccessMapper extends BaseMapper<SmartCarAccess> {
  19. IPage<SmartCarAccessVo> getPage(Page<SmartCarAccessVo> page, @Param("keyWord") String keyWord,@Param("type") String type,@Param("startTime") String startTime,@Param("endTime") String endTime);
  20. }