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

com.zhangzlyuyx.easy.mybatis.ICondition Maven / Gradle / Ivy

package com.zhangzlyuyx.easy.mybatis;

import java.util.List;

public interface ICondition {

	String getAndOr();
	
	String getField();
	
	String getOperator();
	
	Object getValue();
	
	Object getSecondValue();
	
	List getConditions();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy