燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-08-10 e11b25743f224fe44d7747cdd54992f2961c98ab
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);
}