cn.icuter.jsql.condition.Condition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsql Show documentation
Show all versions of jsql Show documentation
JDBC framework for writing sql like java programing
The newest version!
package cn.icuter.jsql.condition;
/**
* @author edward
* @since 2018-08-05
*/
public interface Condition {
String toSql();
String getField();
Object getValue();
int prepareType();
}