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

com.yuweix.kuafu.dao.mybatis.InsertMapper Maven / Gradle / Ivy

The newest version!
package com.yuweix.kuafu.dao.mybatis;


import com.yuweix.kuafu.dao.mybatis.provider.InsertSqlProvider;
import org.apache.ibatis.annotations.InsertProvider;
import org.apache.ibatis.annotations.Options;

import java.io.Serializable;


/**
 * @author yuwei
 */
public interface InsertMapper {
	@Options(useGeneratedKeys = true)
	@InsertProvider(type = InsertSqlProvider.class, method = "insert")
	int insert(T t);

	@Options(useGeneratedKeys = true)
	@InsertProvider(type = InsertSqlProvider.class, method = "insertSelective")
	int insertSelective(T t);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy