1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.yssh.mapper;
|
| import com.yssh.entity.xls.XlsReport;
| import org.apache.ibatis.annotations.Mapper;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| /**
| * XlsReportMapper
| * @author WWW
| * @date 2023-08-09
| */
| @Mapper
| public interface XlsReportMapper {
| List<XlsReport> selectByPage(@Param("type") String type, @Param("start") String start, @Param("end") String end, @Param("limit") Integer limit, @Param("offset") Integer offset);
|
| int xlsExists(@Param("type") String type, @Param("start") String start);
|
| int insert(XlsReport xls);
| }
|
|