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

com.github.dreamroute.mybatis.pro.sdk.InsertMapper Maven / Gradle / Ivy

There is a newer version: 1.7.17
Show newest version
package com.github.dreamroute.mybatis.pro.sdk;

import java.util.List;

/**
 * @author w.dehai
 */
public interface InsertMapper {

    /**
     * 新增单个
     */
    int insert(T entity);

    /**
     * 单个新增(实体为空的属性不新增到数据)
     */
    int insertExcludeNull(T entity);

    /**
     * 批量新增(实体为空的属性也更新到数据库)
     */
    int insertList(List entityList);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy