package com.yssh.mapper; import java.util.List; import org.apache.ibatis.annotations.Param; public interface BaseMapper { int batchInsert(@Param("tableName") String tableName, @Param("datas") List datas); }