package com.moon.server.extend;
|
|
import com.baomidou.mybatisplus.core.injector.AbstractMethod;
|
import com.baomidou.mybatisplus.core.injector.DefaultSqlInjector;
|
import com.baomidou.mybatisplus.core.metadata.TableInfo;
|
|
import java.util.List;
|
|
@SuppressWarnings("ALL")
|
public class CustomizedSqlInjector extends DefaultSqlInjector {
|
@Override
|
public List<AbstractMethod> getMethodList(Class<?> mapperClass, TableInfo tableInfo) {
|
List<AbstractMethod> methodList = super.getMethodList(mapperClass, tableInfo);
|
methodList.add(new InsertBatchMethod());
|
methodList.add(new UpdateBatchMethod());
|
|
return methodList;
|
}
|
}
|