package com.xzx.gc.batch; import org.apache.ibatis.annotations.UpdateProvider; import java.util.List; /** * 批量update * * @param 不能为空 */ @tk.mybatis.mapper.annotation.RegisterMapper public interface InsertSelectiveMapper { /** * 根据Example条件批量更新实体`record`包含的不是null的属性值 * * @return */ @UpdateProvider(type = BatchInsertExampleProvider.class, method = "dynamicSQL") int insertBatchByPrimaryKeySelective(List recordList); }