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

org.fingertip.simpledao.query.IQuery Maven / Gradle / Ivy

The newest version!
package org.fingertip.simpledao.query;

import java.util.List;

public interface IQuery {
    String getSql();
    List getValues();
}