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

com.github.aqiu202.starters.jpa.sql.SQLExecutor Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.github.aqiu202.starters.jpa.sql;

import java.util.Map;

public interface SQLExecutor extends ExtendsRepository, SQLRepository {

    AbstractQuery of(String sql, Map parameters);

    AbstractQuery of(String sql, Object... parameters);

    /**
     * 构造HQL查询
     *
     * @author aqiu
     * @deprecated 不推荐使用
     */
    AbstractQuery hql(String hql, Map parameters);

    /**
     * 构造HQL查询
     *
     * @author aqiu
     * @deprecated 不推荐使用
     */
    AbstractQuery hql(String hql, Object... parameters);

    void clear();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy