package com.jsh.erp.datasource.entities;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
public class OrgaUserRelExample {
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
protected String orderByClause;
|
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
protected boolean distinct;
|
|
/**
|
* This field was generated by MyBatis Generator.
|
* This field corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
protected List<Criteria> oredCriteria;
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public OrgaUserRelExample() {
|
oredCriteria = new ArrayList<Criteria>();
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public void setOrderByClause(String orderByClause) {
|
this.orderByClause = orderByClause;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public String getOrderByClause() {
|
return orderByClause;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public void setDistinct(boolean distinct) {
|
this.distinct = distinct;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public boolean isDistinct() {
|
return distinct;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public List<Criteria> getOredCriteria() {
|
return oredCriteria;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public void or(Criteria criteria) {
|
oredCriteria.add(criteria);
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public Criteria or() {
|
Criteria criteria = createCriteriaInternal();
|
oredCriteria.add(criteria);
|
return criteria;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public Criteria createCriteria() {
|
Criteria criteria = createCriteriaInternal();
|
if (oredCriteria.size() == 0) {
|
oredCriteria.add(criteria);
|
}
|
return criteria;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
protected Criteria createCriteriaInternal() {
|
Criteria criteria = new Criteria();
|
return criteria;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator.
|
* This method corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public void clear() {
|
oredCriteria.clear();
|
orderByClause = null;
|
distinct = false;
|
}
|
|
/**
|
* This class was generated by MyBatis Generator.
|
* This class corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
protected abstract static class GeneratedCriteria {
|
protected List<Criterion> criteria;
|
|
protected GeneratedCriteria() {
|
super();
|
criteria = new ArrayList<Criterion>();
|
}
|
|
public boolean isValid() {
|
return criteria.size() > 0;
|
}
|
|
public List<Criterion> getAllCriteria() {
|
return criteria;
|
}
|
|
public List<Criterion> getCriteria() {
|
return criteria;
|
}
|
|
protected void addCriterion(String condition) {
|
if (condition == null) {
|
throw new RuntimeException("Value for condition cannot be null");
|
}
|
criteria.add(new Criterion(condition));
|
}
|
|
protected void addCriterion(String condition, Object value, String property) {
|
if (value == null) {
|
throw new RuntimeException("Value for " + property + " cannot be null");
|
}
|
criteria.add(new Criterion(condition, value));
|
}
|
|
protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
if (value1 == null || value2 == null) {
|
throw new RuntimeException("Between values for " + property + " cannot be null");
|
}
|
criteria.add(new Criterion(condition, value1, value2));
|
}
|
|
public Criteria andIdIsNull() {
|
addCriterion("id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdIsNotNull() {
|
addCriterion("id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdEqualTo(Long value) {
|
addCriterion("id =", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotEqualTo(Long value) {
|
addCriterion("id <>", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdGreaterThan(Long value) {
|
addCriterion("id >", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdGreaterThanOrEqualTo(Long value) {
|
addCriterion("id >=", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLessThan(Long value) {
|
addCriterion("id <", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLessThanOrEqualTo(Long value) {
|
addCriterion("id <=", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdIn(List<Long> values) {
|
addCriterion("id in", values, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotIn(List<Long> values) {
|
addCriterion("id not in", values, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdBetween(Long value1, Long value2) {
|
addCriterion("id between", value1, value2, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotBetween(Long value1, Long value2) {
|
addCriterion("id not between", value1, value2, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdIsNull() {
|
addCriterion("orga_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdIsNotNull() {
|
addCriterion("orga_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdEqualTo(Long value) {
|
addCriterion("orga_id =", value, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdNotEqualTo(Long value) {
|
addCriterion("orga_id <>", value, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdGreaterThan(Long value) {
|
addCriterion("orga_id >", value, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdGreaterThanOrEqualTo(Long value) {
|
addCriterion("orga_id >=", value, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdLessThan(Long value) {
|
addCriterion("orga_id <", value, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdLessThanOrEqualTo(Long value) {
|
addCriterion("orga_id <=", value, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdIn(List<Long> values) {
|
addCriterion("orga_id in", values, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdNotIn(List<Long> values) {
|
addCriterion("orga_id not in", values, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdBetween(Long value1, Long value2) {
|
addCriterion("orga_id between", value1, value2, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrgaIdNotBetween(Long value1, Long value2) {
|
addCriterion("orga_id not between", value1, value2, "orgaId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdIsNull() {
|
addCriterion("user_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdIsNotNull() {
|
addCriterion("user_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdEqualTo(Long value) {
|
addCriterion("user_id =", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdNotEqualTo(Long value) {
|
addCriterion("user_id <>", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdGreaterThan(Long value) {
|
addCriterion("user_id >", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdGreaterThanOrEqualTo(Long value) {
|
addCriterion("user_id >=", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdLessThan(Long value) {
|
addCriterion("user_id <", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdLessThanOrEqualTo(Long value) {
|
addCriterion("user_id <=", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdIn(List<Long> values) {
|
addCriterion("user_id in", values, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdNotIn(List<Long> values) {
|
addCriterion("user_id not in", values, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdBetween(Long value1, Long value2) {
|
addCriterion("user_id between", value1, value2, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdNotBetween(Long value1, Long value2) {
|
addCriterion("user_id not between", value1, value2, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqIsNull() {
|
addCriterion("user_blng_orga_dspl_seq is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqIsNotNull() {
|
addCriterion("user_blng_orga_dspl_seq is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqEqualTo(String value) {
|
addCriterion("user_blng_orga_dspl_seq =", value, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqNotEqualTo(String value) {
|
addCriterion("user_blng_orga_dspl_seq <>", value, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqGreaterThan(String value) {
|
addCriterion("user_blng_orga_dspl_seq >", value, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqGreaterThanOrEqualTo(String value) {
|
addCriterion("user_blng_orga_dspl_seq >=", value, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqLessThan(String value) {
|
addCriterion("user_blng_orga_dspl_seq <", value, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqLessThanOrEqualTo(String value) {
|
addCriterion("user_blng_orga_dspl_seq <=", value, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqLike(String value) {
|
addCriterion("user_blng_orga_dspl_seq like", value, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqNotLike(String value) {
|
addCriterion("user_blng_orga_dspl_seq not like", value, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqIn(List<String> values) {
|
addCriterion("user_blng_orga_dspl_seq in", values, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqNotIn(List<String> values) {
|
addCriterion("user_blng_orga_dspl_seq not in", values, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqBetween(String value1, String value2) {
|
addCriterion("user_blng_orga_dspl_seq between", value1, value2, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserBlngOrgaDsplSeqNotBetween(String value1, String value2) {
|
addCriterion("user_blng_orga_dspl_seq not between", value1, value2, "userBlngOrgaDsplSeq");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagIsNull() {
|
addCriterion("delete_flag is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagIsNotNull() {
|
addCriterion("delete_flag is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagEqualTo(String value) {
|
addCriterion("delete_flag =", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagNotEqualTo(String value) {
|
addCriterion("delete_flag <>", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagGreaterThan(String value) {
|
addCriterion("delete_flag >", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagGreaterThanOrEqualTo(String value) {
|
addCriterion("delete_flag >=", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagLessThan(String value) {
|
addCriterion("delete_flag <", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagLessThanOrEqualTo(String value) {
|
addCriterion("delete_flag <=", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagLike(String value) {
|
addCriterion("delete_flag like", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagNotLike(String value) {
|
addCriterion("delete_flag not like", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagIn(List<String> values) {
|
addCriterion("delete_flag in", values, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagNotIn(List<String> values) {
|
addCriterion("delete_flag not in", values, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagBetween(String value1, String value2) {
|
addCriterion("delete_flag between", value1, value2, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagNotBetween(String value1, String value2) {
|
addCriterion("delete_flag not between", value1, value2, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeIsNull() {
|
addCriterion("create_time is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeIsNotNull() {
|
addCriterion("create_time is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeEqualTo(Date value) {
|
addCriterion("create_time =", value, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeNotEqualTo(Date value) {
|
addCriterion("create_time <>", value, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeGreaterThan(Date value) {
|
addCriterion("create_time >", value, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("create_time >=", value, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeLessThan(Date value) {
|
addCriterion("create_time <", value, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
|
addCriterion("create_time <=", value, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeIn(List<Date> values) {
|
addCriterion("create_time in", values, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeNotIn(List<Date> values) {
|
addCriterion("create_time not in", values, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeBetween(Date value1, Date value2) {
|
addCriterion("create_time between", value1, value2, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
|
addCriterion("create_time not between", value1, value2, "createTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIsNull() {
|
addCriterion("creator is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIsNotNull() {
|
addCriterion("creator is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorEqualTo(Long value) {
|
addCriterion("creator =", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotEqualTo(Long value) {
|
addCriterion("creator <>", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorGreaterThan(Long value) {
|
addCriterion("creator >", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorGreaterThanOrEqualTo(Long value) {
|
addCriterion("creator >=", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLessThan(Long value) {
|
addCriterion("creator <", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLessThanOrEqualTo(Long value) {
|
addCriterion("creator <=", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIn(List<Long> values) {
|
addCriterion("creator in", values, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotIn(List<Long> values) {
|
addCriterion("creator not in", values, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorBetween(Long value1, Long value2) {
|
addCriterion("creator between", value1, value2, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotBetween(Long value1, Long value2) {
|
addCriterion("creator not between", value1, value2, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeIsNull() {
|
addCriterion("update_time is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeIsNotNull() {
|
addCriterion("update_time is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeEqualTo(Date value) {
|
addCriterion("update_time =", value, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeNotEqualTo(Date value) {
|
addCriterion("update_time <>", value, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeGreaterThan(Date value) {
|
addCriterion("update_time >", value, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("update_time >=", value, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeLessThan(Date value) {
|
addCriterion("update_time <", value, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
|
addCriterion("update_time <=", value, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeIn(List<Date> values) {
|
addCriterion("update_time in", values, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeNotIn(List<Date> values) {
|
addCriterion("update_time not in", values, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeBetween(Date value1, Date value2) {
|
addCriterion("update_time between", value1, value2, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
|
addCriterion("update_time not between", value1, value2, "updateTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterIsNull() {
|
addCriterion("updater is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterIsNotNull() {
|
addCriterion("updater is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterEqualTo(Long value) {
|
addCriterion("updater =", value, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterNotEqualTo(Long value) {
|
addCriterion("updater <>", value, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterGreaterThan(Long value) {
|
addCriterion("updater >", value, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterGreaterThanOrEqualTo(Long value) {
|
addCriterion("updater >=", value, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterLessThan(Long value) {
|
addCriterion("updater <", value, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterLessThanOrEqualTo(Long value) {
|
addCriterion("updater <=", value, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterIn(List<Long> values) {
|
addCriterion("updater in", values, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterNotIn(List<Long> values) {
|
addCriterion("updater not in", values, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterBetween(Long value1, Long value2) {
|
addCriterion("updater between", value1, value2, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdaterNotBetween(Long value1, Long value2) {
|
addCriterion("updater not between", value1, value2, "updater");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdIsNull() {
|
addCriterion("tenant_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdIsNotNull() {
|
addCriterion("tenant_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdEqualTo(Long value) {
|
addCriterion("tenant_id =", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdNotEqualTo(Long value) {
|
addCriterion("tenant_id <>", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdGreaterThan(Long value) {
|
addCriterion("tenant_id >", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdGreaterThanOrEqualTo(Long value) {
|
addCriterion("tenant_id >=", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdLessThan(Long value) {
|
addCriterion("tenant_id <", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdLessThanOrEqualTo(Long value) {
|
addCriterion("tenant_id <=", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdIn(List<Long> values) {
|
addCriterion("tenant_id in", values, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdNotIn(List<Long> values) {
|
addCriterion("tenant_id not in", values, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdBetween(Long value1, Long value2) {
|
addCriterion("tenant_id between", value1, value2, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdNotBetween(Long value1, Long value2) {
|
addCriterion("tenant_id not between", value1, value2, "tenantId");
|
return (Criteria) this;
|
}
|
}
|
|
/**
|
* This class was generated by MyBatis Generator.
|
* This class corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated do_not_delete_during_merge
|
*/
|
public static class Criteria extends GeneratedCriteria {
|
|
protected Criteria() {
|
super();
|
}
|
}
|
|
/**
|
* This class was generated by MyBatis Generator.
|
* This class corresponds to the database table jsh_orga_user_rel
|
*
|
* @mbggenerated
|
*/
|
public static class Criterion {
|
private String condition;
|
|
private Object value;
|
|
private Object secondValue;
|
|
private boolean noValue;
|
|
private boolean singleValue;
|
|
private boolean betweenValue;
|
|
private boolean listValue;
|
|
private String typeHandler;
|
|
public String getCondition() {
|
return condition;
|
}
|
|
public Object getValue() {
|
return value;
|
}
|
|
public Object getSecondValue() {
|
return secondValue;
|
}
|
|
public boolean isNoValue() {
|
return noValue;
|
}
|
|
public boolean isSingleValue() {
|
return singleValue;
|
}
|
|
public boolean isBetweenValue() {
|
return betweenValue;
|
}
|
|
public boolean isListValue() {
|
return listValue;
|
}
|
|
public String getTypeHandler() {
|
return typeHandler;
|
}
|
|
protected Criterion(String condition) {
|
super();
|
this.condition = condition;
|
this.typeHandler = null;
|
this.noValue = true;
|
}
|
|
protected Criterion(String condition, Object value, String typeHandler) {
|
super();
|
this.condition = condition;
|
this.value = value;
|
this.typeHandler = typeHandler;
|
if (value instanceof List<?>) {
|
this.listValue = true;
|
} else {
|
this.singleValue = true;
|
}
|
}
|
|
protected Criterion(String condition, Object value) {
|
this(condition, value, null);
|
}
|
|
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
|
super();
|
this.condition = condition;
|
this.value = value;
|
this.secondValue = secondValue;
|
this.typeHandler = typeHandler;
|
this.betweenValue = true;
|
}
|
|
protected Criterion(String condition, Object value, Object secondValue) {
|
this(condition, value, secondValue, null);
|
}
|
}
|
}
|