package org.springnewfiber.dataadapter.sswj.mapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.springnewfiber.dataadapter.sswj.entity.TableColumnInfo; import java.util.List; import java.util.Map; /** * @program: newfiber-data-adapter * @description: * @author: djt * @create: 2022-05-18 11:15 **/ @Mapper public interface ExcelPlusMapper { List<TableColumnInfo> selectTableColumn(@Param("dataName") String dataName, @Param("tableName") String tableName); String selectTableName(@Param("dataName") String dataName, @Param("tableName") String tableName); List<Map> selectDataByTableName(@Param("tableName") String tableName, @Param("lastSql") String lastSql); }