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

com.github.chuanzh.orm.OrCondition Maven / Gradle / Ivy

The newest version!
package com.github.chuanzh.orm;

import java.util.List;

public class OrCondition {
	public List column = null;
	public List operator;
	public List value = null;

	public OrCondition(List column, List operator,
			List value) {
		this.column = column;
		this.operator = operator;
		this.value = value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy