燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-08-09 68fb467762697d9f71e12bb71e14d177880537d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 {
    int insert(XlsReport xls);
 
    List<XlsReport> selectByPage(@Param("type") String type, @Param("start") Integer start, @Param("end") Integer end, @Param("pageIndex") Integer pageIndex, @Param("pageSize") Integer pageSize);
}