代码调整
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.njcn.db.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hongawen
|
||||
* @version 1.0.0
|
||||
* @date 2023年05月30日 14:54
|
||||
*/
|
||||
public interface BatchMapper<T> extends BaseMapper<T> {
|
||||
|
||||
/**
|
||||
* 真正的批量插入
|
||||
*/
|
||||
int insertBatchSomeColumn(List<T> entityList);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user