huliguo
2 天以前 5d7b65670282a4fad015e37d567cfa171b162052
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.errand.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.ruoyi.errand.domain.AddressBook;
import com.ruoyi.errand.domain.Report;
import com.ruoyi.errand.object.dto.sys.ReportPageListDTO;
import com.ruoyi.errand.object.vo.sys.ReportPageListVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
@Mapper
public interface ReportMapper extends BaseMapper<Report> {
    IPage<ReportPageListVO> getReportList(@Param("page") IPage<ReportPageListVO> page, @Param("dto") ReportPageListDTO dto);
}