| | |
| | | package com.ycl.platform.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ycl.platform.domain.entity.Report; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.platform.domain.query.ReportQuery; |
| | |
| | | import com.ycl.platform.domain.form.ReportForm; |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * 报备 Mapper 接口 |
| | |
| | | @Mapper |
| | | public interface ReportMapper extends BaseMapper<Report> { |
| | | |
| | | List<ReportVO> page(ReportQuery query); |
| | | IPage<ReportVO> page(IPage page, @Param("query") ReportQuery query); |
| | | } |