com.github.chuanzh.orm.ConditionOperator Maven / Gradle / Ivy
package com.github.chuanzh.orm;
public enum ConditionOperator {
/**
* 等于
*/
EQ ,
/**
* 大于等于
*/
GE ,
/**
* 小于等于
*/
LE ,
/**
* 大于
*/
GT ,
/**
* 小于
*/
LT,
/**
* 不等�?
*/
NOT ,
LIKE,
IS,
IS_NOT ,
/**
* in ('1','2')
*/
IN
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy