
tk.mybatis.mapper.additional.upsert.BatchUpsertMapper Maven / Gradle / Ivy
package tk.mybatis.mapper.additional.upsert;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.UpdateProvider;
import tk.mybatis.mapper.annotation.RegisterMapper;
import java.util.List;
@RegisterMapper
public interface BatchUpsertMapper {
@UpdateProvider(
type = BatchUpsertProvider.class,
method = "dynamicSQL"
)
void batchUpsert(@Param("list") List extends T> recordList);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy