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 selectByPage(@Param("type") String type, @Param("start") Integer start, @Param("end") Integer end, @Param("pageIndex") Integer pageIndex, @Param("pageSize") Integer pageSize); }