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 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); }