ResultOtherLisMapper.java 506 B

1234567891011121314151617181920
  1. package com.diagbot.mapper;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.diagbot.entity.ResultOtherLis;
  4. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  5. import com.diagbot.vo.ResultPageVO;
  6. import org.apache.ibatis.annotations.Param;
  7. /**
  8. * <p>
  9. * Mapper 接口
  10. * </p>
  11. *
  12. * @author gaodm
  13. * @since 2021-01-19
  14. */
  15. public interface ResultOtherLisMapper extends BaseMapper<ResultOtherLis> {
  16. IPage<ResultOtherLis> getPage(@Param("resultPageVO") ResultPageVO resultPageVO);
  17. }