
top.jfunc.common.db.condition.Conjunction Maven / Gradle / Ivy
The newest version!
package top.jfunc.common.db.condition;
import java.util.Collection;
/**
* SQL 条件连接符,默认使用 AND
* @author chenzhaoju
* @author yangjian
*/
public class Conjunction extends Junction {
public Conjunction() {
super( Nature.AND );
}
protected Conjunction(Criterion... criterion) {
super( Nature.AND, criterion );
}
public Conjunction(Collection criterions) {
super(Nature.AND, criterions);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy