1234567891011121314151617181920 |
- package com.diagbot.mapper;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.diagbot.entity.ResultOtherLis;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.diagbot.vo.ResultPageVO;
- import org.apache.ibatis.annotations.Param;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author gaodm
- * @since 2021-01-19
- */
- public interface ResultOtherLisMapper extends BaseMapper<ResultOtherLis> {
- IPage<ResultOtherLis> getPage(@Param("resultPageVO") ResultPageVO resultPageVO);
- }
|