
sf.r2dbc.sql.R2dbcCrudExampleInf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm Show documentation
Show all versions of sorm Show documentation
java jpa tool for spring
The newest version!
package sf.r2dbc.sql;
import io.r2dbc.spi.Connection;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
import sf.common.wrapper.Page;
import sf.core.DBObject;
import sf.dsl.DeleteDSL;
import sf.dsl.InsertDSL;
import sf.dsl.UpdateDSL;
import sf.dsl.example.Example;
import java.util.List;
import java.util.Map;
/**
* 按example操作
*/
public interface R2dbcCrudExampleInf {
/**
* @param conn
* @param start
* @param limit
* @param beanClass
* @param example
* @param
* @return
*/
Mono> selectPage(Connection conn, long start, int limit, Class beanClass, Example example);
/**
* @param conn
* @param example
* @return
* @
*/
Mono
© 2015 - 2025 Weber Informatics LLC | Privacy Policy