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

com.artfii.fluentsql.core.Query Maven / Gradle / Ivy

There is a newer version: 0.0.17.10
Show newest version
package com.artfii.fluentsql.core;

import java.util.List;

/**
 * Func :
 *
 * @author: leeton on 2019/6/21.
 */
public interface Query {

    String build();

     T to();

     T to(Class tClass);

    Long toCount();

     List toList();

    List toList(Class tClass);

    boolean toDel();

    int toUpdate(Object entity);

    int toSave(Object entity);

    int toBatchInsert(List batchValues);

     Page toPage(Page page);

     Page toPage(Class clz, Page page);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy