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

top.jfunc.common.db.QueryHelper Maven / Gradle / Ivy

The newest version!
package top.jfunc.common.db;

import top.jfunc.common.db.query.JdbcQueryBuilder;


/**
 * 兼容以前已经发布出去的
 * @author xiongshiyan at 2019/12/12 , contact me with email [email protected] or phone 15208384257
 */
public class QueryHelper extends JdbcQueryBuilder {
    public QueryHelper() {
        super();
    }
    public QueryHelper(String select, String tableName, String alias) {
        super(select, tableName, alias);
    }
    public QueryHelper(String select, String... froms) {
        super(select, froms);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy