org.zodiac.mybatisplus.injector.methods.InsertIgnore Maven / Gradle / Ivy
package org.zodiac.mybatisplus.injector.methods;
import org.zodiac.mybatisplus.injector.MyBatisPlusMethod;
/**
* 插入一条数据(选择字段插入)插入如果中已经存在相同的记录,则忽略当前新数据。
*
*/
public class InsertIgnore extends AbstractInsertMethod {
private static final long serialVersionUID = 2085994193697179926L;
public InsertIgnore() {
super(MyBatisPlusMethod.INSERT_IGNORE_ONE);
}
}