cn.vonce.sql.service.InsertService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
package cn.vonce.sql.service;
import cn.vonce.sql.bean.Insert;
import java.util.List;
/**
* Insert 通用业务接口
*
* @param
* @author Jovi
* @version 1.0
* @email [email protected]
* @date 2019年6月27日下午3:57:33
*/
public interface InsertService {
/**
* 插入数据
*
* @param bean
* @return
*/
@SuppressWarnings("unchecked")
long insert(T... bean);
/**
* 插入数据
*
* @param beanList
* @return
*/
@SuppressWarnings("unchecked")
long insert(List beanList);
/**
* 插入数据
*
* @param insert
* @return
*/
long inset(Insert insert);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy