All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tk.mybatis.mapper.additional.update.batch.BatchUpdateSelectiveMapper Maven / Gradle / Ivy

The newest version!
package tk.mybatis.mapper.additional.update.batch;

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 BatchUpdateSelectiveMapper {

    @UpdateProvider(
            type = BatchUpdateProvider.class,
            method = "dynamicSQL"
    )
    void batchUpdateSelective(@Param("list") List recordList);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy