package cn.com.basic.face.discern.baseApi.entity.user;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
public class UserDepartmentQuery {
|
protected String orderByClause;
|
|
protected boolean distinct;
|
|
protected List<Criteria> oredCriteria;
|
|
protected Integer pageNo = 1;
|
|
protected Integer startRow;
|
|
protected Integer pageSize = 10;
|
|
protected String fields;
|
|
public UserDepartmentQuery() {
|
oredCriteria = new ArrayList<Criteria>();
|
}
|
|
public void setOrderByClause(String orderByClause) {
|
this.orderByClause = orderByClause;
|
}
|
|
public String getOrderByClause() {
|
return orderByClause;
|
}
|
|
public void setDistinct(boolean distinct) {
|
this.distinct = distinct;
|
}
|
|
public boolean isDistinct() {
|
return distinct;
|
}
|
|
public List<Criteria> getOredCriteria() {
|
return oredCriteria;
|
}
|
|
public void or(Criteria criteria) {
|
oredCriteria.add(criteria);
|
}
|
|
public Criteria or() {
|
Criteria criteria = createCriteriaInternal();
|
oredCriteria.add(criteria);
|
return criteria;
|
}
|
|
public Criteria createCriteria() {
|
Criteria criteria = createCriteriaInternal();
|
if (oredCriteria.size() == 0) {
|
oredCriteria.add(criteria);
|
}
|
return criteria;
|
}
|
|
protected Criteria createCriteriaInternal() {
|
Criteria criteria = new Criteria();
|
return criteria;
|
}
|
|
public void clear() {
|
oredCriteria.clear();
|
orderByClause = null;
|
distinct = false;
|
}
|
|
public void setPageNo(Integer pageNo) {
|
this.pageNo=pageNo;
|
this.startRow = (pageNo-1)*this.pageSize;
|
}
|
|
public Integer getPageNo() {
|
return pageNo;
|
}
|
|
public void setStartRow(Integer startRow) {
|
this.startRow=startRow;
|
}
|
|
public Integer getStartRow() {
|
return startRow;
|
}
|
|
public void setPageSize(Integer pageSize) {
|
this.pageSize=pageSize;
|
this.startRow = (pageNo-1)*this.pageSize;
|
}
|
|
public Integer getPageSize() {
|
return pageSize;
|
}
|
|
public void setFields(String fields) {
|
this.fields=fields;
|
}
|
|
public String getFields() {
|
return fields;
|
}
|
|
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 andUseridIsNull() {
|
addCriterion("userID is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridIsNotNull() {
|
addCriterion("userID is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridEqualTo(String value) {
|
addCriterion("userID =", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridNotEqualTo(String value) {
|
addCriterion("userID <>", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridGreaterThan(String value) {
|
addCriterion("userID >", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridGreaterThanOrEqualTo(String value) {
|
addCriterion("userID >=", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridLessThan(String value) {
|
addCriterion("userID <", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridLessThanOrEqualTo(String value) {
|
addCriterion("userID <=", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridLike(String value) {
|
addCriterion("userID like", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridNotLike(String value) {
|
addCriterion("userID not like", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridIn(List<String> values) {
|
addCriterion("userID in", values, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridNotIn(List<String> values) {
|
addCriterion("userID not in", values, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridBetween(String value1, String value2) {
|
addCriterion("userID between", value1, value2, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridNotBetween(String value1, String value2) {
|
addCriterion("userID not between", value1, value2, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidIsNull() {
|
addCriterion("departmentID is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidIsNotNull() {
|
addCriterion("departmentID is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidEqualTo(String value) {
|
addCriterion("departmentID =", value, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidNotEqualTo(String value) {
|
addCriterion("departmentID <>", value, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidGreaterThan(String value) {
|
addCriterion("departmentID >", value, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidGreaterThanOrEqualTo(String value) {
|
addCriterion("departmentID >=", value, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidLessThan(String value) {
|
addCriterion("departmentID <", value, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidLessThanOrEqualTo(String value) {
|
addCriterion("departmentID <=", value, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidLike(String value) {
|
addCriterion("departmentID like", value, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidNotLike(String value) {
|
addCriterion("departmentID not like", value, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidIn(List<String> values) {
|
addCriterion("departmentID in", values, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidNotIn(List<String> values) {
|
addCriterion("departmentID not in", values, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidBetween(String value1, String value2) {
|
addCriterion("departmentID between", value1, value2, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andDepartmentidNotBetween(String value1, String value2) {
|
addCriterion("departmentID not between", value1, value2, "departmentid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostIsNull() {
|
addCriterion("post is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostIsNotNull() {
|
addCriterion("post is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostEqualTo(String value) {
|
addCriterion("post =", value, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostNotEqualTo(String value) {
|
addCriterion("post <>", value, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostGreaterThan(String value) {
|
addCriterion("post >", value, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostGreaterThanOrEqualTo(String value) {
|
addCriterion("post >=", value, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostLessThan(String value) {
|
addCriterion("post <", value, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostLessThanOrEqualTo(String value) {
|
addCriterion("post <=", value, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostLike(String value) {
|
addCriterion("post like", value, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostNotLike(String value) {
|
addCriterion("post not like", value, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostIn(List<String> values) {
|
addCriterion("post in", values, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostNotIn(List<String> values) {
|
addCriterion("post not in", values, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostBetween(String value1, String value2) {
|
addCriterion("post between", value1, value2, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andPostNotBetween(String value1, String value2) {
|
addCriterion("post not between", value1, value2, "post");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneIsNull() {
|
addCriterion("mobilePhone is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneIsNotNull() {
|
addCriterion("mobilePhone is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneEqualTo(String value) {
|
addCriterion("mobilePhone =", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneNotEqualTo(String value) {
|
addCriterion("mobilePhone <>", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneGreaterThan(String value) {
|
addCriterion("mobilePhone >", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneGreaterThanOrEqualTo(String value) {
|
addCriterion("mobilePhone >=", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneLessThan(String value) {
|
addCriterion("mobilePhone <", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneLessThanOrEqualTo(String value) {
|
addCriterion("mobilePhone <=", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneLike(String value) {
|
addCriterion("mobilePhone like", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneNotLike(String value) {
|
addCriterion("mobilePhone not like", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneIn(List<String> values) {
|
addCriterion("mobilePhone in", values, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneNotIn(List<String> values) {
|
addCriterion("mobilePhone not in", values, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneBetween(String value1, String value2) {
|
addCriterion("mobilePhone between", value1, value2, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneNotBetween(String value1, String value2) {
|
addCriterion("mobilePhone not between", value1, value2, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneIsNull() {
|
addCriterion("phone is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneIsNotNull() {
|
addCriterion("phone is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneEqualTo(String value) {
|
addCriterion("phone =", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneNotEqualTo(String value) {
|
addCriterion("phone <>", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneGreaterThan(String value) {
|
addCriterion("phone >", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneGreaterThanOrEqualTo(String value) {
|
addCriterion("phone >=", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneLessThan(String value) {
|
addCriterion("phone <", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneLessThanOrEqualTo(String value) {
|
addCriterion("phone <=", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneLike(String value) {
|
addCriterion("phone like", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneNotLike(String value) {
|
addCriterion("phone not like", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneIn(List<String> values) {
|
addCriterion("phone in", values, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneNotIn(List<String> values) {
|
addCriterion("phone not in", values, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneBetween(String value1, String value2) {
|
addCriterion("phone between", value1, value2, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneNotBetween(String value1, String value2) {
|
addCriterion("phone not between", value1, value2, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidIsNull() {
|
addCriterion("companyID is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidIsNotNull() {
|
addCriterion("companyID is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidEqualTo(String value) {
|
addCriterion("companyID =", value, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidNotEqualTo(String value) {
|
addCriterion("companyID <>", value, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidGreaterThan(String value) {
|
addCriterion("companyID >", value, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidGreaterThanOrEqualTo(String value) {
|
addCriterion("companyID >=", value, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidLessThan(String value) {
|
addCriterion("companyID <", value, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidLessThanOrEqualTo(String value) {
|
addCriterion("companyID <=", value, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidLike(String value) {
|
addCriterion("companyID like", value, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidNotLike(String value) {
|
addCriterion("companyID not like", value, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidIn(List<String> values) {
|
addCriterion("companyID in", values, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidNotIn(List<String> values) {
|
addCriterion("companyID not in", values, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidBetween(String value1, String value2) {
|
addCriterion("companyID between", value1, value2, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andCompanyidNotBetween(String value1, String value2) {
|
addCriterion("companyID not between", value1, value2, "companyid");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignIsNull() {
|
addCriterion("resign is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignIsNotNull() {
|
addCriterion("resign is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignEqualTo(Boolean value) {
|
addCriterion("resign =", value, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignNotEqualTo(Boolean value) {
|
addCriterion("resign <>", value, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignGreaterThan(Boolean value) {
|
addCriterion("resign >", value, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignGreaterThanOrEqualTo(Boolean value) {
|
addCriterion("resign >=", value, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignLessThan(Boolean value) {
|
addCriterion("resign <", value, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignLessThanOrEqualTo(Boolean value) {
|
addCriterion("resign <=", value, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignIn(List<Boolean> values) {
|
addCriterion("resign in", values, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignNotIn(List<Boolean> values) {
|
addCriterion("resign not in", values, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignBetween(Boolean value1, Boolean value2) {
|
addCriterion("resign between", value1, value2, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andResignNotBetween(Boolean value1, Boolean value2) {
|
addCriterion("resign not between", value1, value2, "resign");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusIsNull() {
|
addCriterion("dataStatus is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusIsNotNull() {
|
addCriterion("dataStatus is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusEqualTo(Byte value) {
|
addCriterion("dataStatus =", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusNotEqualTo(Byte value) {
|
addCriterion("dataStatus <>", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusGreaterThan(Byte value) {
|
addCriterion("dataStatus >", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusGreaterThanOrEqualTo(Byte value) {
|
addCriterion("dataStatus >=", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusLessThan(Byte value) {
|
addCriterion("dataStatus <", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusLessThanOrEqualTo(Byte value) {
|
addCriterion("dataStatus <=", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusIn(List<Byte> values) {
|
addCriterion("dataStatus in", values, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusNotIn(List<Byte> values) {
|
addCriterion("dataStatus not in", values, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusBetween(Byte value1, Byte value2) {
|
addCriterion("dataStatus between", value1, value2, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusNotBetween(Byte value1, Byte value2) {
|
addCriterion("dataStatus not between", value1, value2, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeIsNull() {
|
addCriterion("createTime is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeIsNotNull() {
|
addCriterion("createTime is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeEqualTo(Date value) {
|
addCriterion("createTime =", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeNotEqualTo(Date value) {
|
addCriterion("createTime <>", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeGreaterThan(Date value) {
|
addCriterion("createTime >", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("createTime >=", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeLessThan(Date value) {
|
addCriterion("createTime <", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeLessThanOrEqualTo(Date value) {
|
addCriterion("createTime <=", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeIn(List<Date> values) {
|
addCriterion("createTime in", values, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeNotIn(List<Date> values) {
|
addCriterion("createTime not in", values, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeBetween(Date value1, Date value2) {
|
addCriterion("createTime between", value1, value2, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeNotBetween(Date value1, Date value2) {
|
addCriterion("createTime 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(String value) {
|
addCriterion("creator =", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotEqualTo(String value) {
|
addCriterion("creator <>", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorGreaterThan(String value) {
|
addCriterion("creator >", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorGreaterThanOrEqualTo(String value) {
|
addCriterion("creator >=", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLessThan(String value) {
|
addCriterion("creator <", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLessThanOrEqualTo(String value) {
|
addCriterion("creator <=", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLike(String value) {
|
addCriterion("creator like", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotLike(String value) {
|
addCriterion("creator not like", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIn(List<String> values) {
|
addCriterion("creator in", values, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotIn(List<String> values) {
|
addCriterion("creator not in", values, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorBetween(String value1, String value2) {
|
addCriterion("creator between", value1, value2, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotBetween(String value1, String value2) {
|
addCriterion("creator not between", value1, value2, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeIsNull() {
|
addCriterion("updatetime is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeIsNotNull() {
|
addCriterion("updatetime is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeEqualTo(Date value) {
|
addCriterion("updatetime =", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeNotEqualTo(Date value) {
|
addCriterion("updatetime <>", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeGreaterThan(Date value) {
|
addCriterion("updatetime >", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("updatetime >=", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeLessThan(Date value) {
|
addCriterion("updatetime <", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeLessThanOrEqualTo(Date value) {
|
addCriterion("updatetime <=", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeIn(List<Date> values) {
|
addCriterion("updatetime in", values, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeNotIn(List<Date> values) {
|
addCriterion("updatetime not in", values, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeBetween(Date value1, Date value2) {
|
addCriterion("updatetime between", value1, value2, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeNotBetween(Date value1, Date value2) {
|
addCriterion("updatetime not between", value1, value2, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorIsNull() {
|
addCriterion("updator is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorIsNotNull() {
|
addCriterion("updator is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorEqualTo(String value) {
|
addCriterion("updator =", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorNotEqualTo(String value) {
|
addCriterion("updator <>", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorGreaterThan(String value) {
|
addCriterion("updator >", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorGreaterThanOrEqualTo(String value) {
|
addCriterion("updator >=", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorLessThan(String value) {
|
addCriterion("updator <", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorLessThanOrEqualTo(String value) {
|
addCriterion("updator <=", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorLike(String value) {
|
addCriterion("updator like", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorNotLike(String value) {
|
addCriterion("updator not like", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorIn(List<String> values) {
|
addCriterion("updator in", values, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorNotIn(List<String> values) {
|
addCriterion("updator not in", values, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorBetween(String value1, String value2) {
|
addCriterion("updator between", value1, value2, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorNotBetween(String value1, String value2) {
|
addCriterion("updator not between", value1, value2, "updator");
|
return (Criteria) this;
|
}
|
}
|
|
public static class Criteria extends GeneratedCriteria {
|
|
protected Criteria() {
|
super();
|
}
|
}
|
|
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);
|
}
|
}
|
}
|