|
@@ -0,0 +1,801 @@
|
|
|
+package com.ghsc.partybuild.model;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class PfPartylifemeetingPersonnelExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public PfPartylifemeetingPersonnelExample() {
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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(String value) {
|
|
|
+ addCriterion("id =", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotEqualTo(String value) {
|
|
|
+ addCriterion("id <>", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdGreaterThan(String value) {
|
|
|
+ addCriterion("id >", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("id >=", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLessThan(String value) {
|
|
|
+ addCriterion("id <", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("id <=", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLike(String value) {
|
|
|
+ addCriterion("id like", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotLike(String value) {
|
|
|
+ addCriterion("id not like", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdIn(List<String> values) {
|
|
|
+ addCriterion("id in", values, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotIn(List<String> values) {
|
|
|
+ addCriterion("id not in", values, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("id between", value1, value2, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("id not between", value1, value2, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidIsNull() {
|
|
|
+ addCriterion("partyLifeMeetingId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidIsNotNull() {
|
|
|
+ addCriterion("partyLifeMeetingId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidEqualTo(String value) {
|
|
|
+ addCriterion("partyLifeMeetingId =", value, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidNotEqualTo(String value) {
|
|
|
+ addCriterion("partyLifeMeetingId <>", value, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidGreaterThan(String value) {
|
|
|
+ addCriterion("partyLifeMeetingId >", value, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("partyLifeMeetingId >=", value, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidLessThan(String value) {
|
|
|
+ addCriterion("partyLifeMeetingId <", value, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("partyLifeMeetingId <=", value, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidLike(String value) {
|
|
|
+ addCriterion("partyLifeMeetingId like", value, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidNotLike(String value) {
|
|
|
+ addCriterion("partyLifeMeetingId not like", value, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidIn(List<String> values) {
|
|
|
+ addCriterion("partyLifeMeetingId in", values, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidNotIn(List<String> values) {
|
|
|
+ addCriterion("partyLifeMeetingId not in", values, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidBetween(String value1, String value2) {
|
|
|
+ addCriterion("partyLifeMeetingId between", value1, value2, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartylifemeetingidNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("partyLifeMeetingId not between", value1, value2, "partylifemeetingid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmIsNull() {
|
|
|
+ addCriterion("rybm is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmIsNotNull() {
|
|
|
+ addCriterion("rybm is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmEqualTo(String value) {
|
|
|
+ addCriterion("rybm =", value, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmNotEqualTo(String value) {
|
|
|
+ addCriterion("rybm <>", value, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmGreaterThan(String value) {
|
|
|
+ addCriterion("rybm >", value, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("rybm >=", value, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmLessThan(String value) {
|
|
|
+ addCriterion("rybm <", value, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("rybm <=", value, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmLike(String value) {
|
|
|
+ addCriterion("rybm like", value, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmNotLike(String value) {
|
|
|
+ addCriterion("rybm not like", value, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmIn(List<String> values) {
|
|
|
+ addCriterion("rybm in", values, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmNotIn(List<String> values) {
|
|
|
+ addCriterion("rybm not in", values, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmBetween(String value1, String value2) {
|
|
|
+ addCriterion("rybm between", value1, value2, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRybmNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("rybm not between", value1, value2, "rybm");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismIsNull() {
|
|
|
+ addCriterion("isAbsenteeism is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismIsNotNull() {
|
|
|
+ addCriterion("isAbsenteeism is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismEqualTo(Integer value) {
|
|
|
+ addCriterion("isAbsenteeism =", value, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismNotEqualTo(Integer value) {
|
|
|
+ addCriterion("isAbsenteeism <>", value, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismGreaterThan(Integer value) {
|
|
|
+ addCriterion("isAbsenteeism >", value, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("isAbsenteeism >=", value, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismLessThan(Integer value) {
|
|
|
+ addCriterion("isAbsenteeism <", value, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("isAbsenteeism <=", value, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismIn(List<Integer> values) {
|
|
|
+ addCriterion("isAbsenteeism in", values, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismNotIn(List<Integer> values) {
|
|
|
+ addCriterion("isAbsenteeism not in", values, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("isAbsenteeism between", value1, value2, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsabsenteeismNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("isAbsenteeism not between", value1, value2, "isabsenteeism");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseIsNull() {
|
|
|
+ addCriterion("absenteeismCause is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseIsNotNull() {
|
|
|
+ addCriterion("absenteeismCause is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseEqualTo(String value) {
|
|
|
+ addCriterion("absenteeismCause =", value, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseNotEqualTo(String value) {
|
|
|
+ addCriterion("absenteeismCause <>", value, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseGreaterThan(String value) {
|
|
|
+ addCriterion("absenteeismCause >", value, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("absenteeismCause >=", value, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseLessThan(String value) {
|
|
|
+ addCriterion("absenteeismCause <", value, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("absenteeismCause <=", value, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseLike(String value) {
|
|
|
+ addCriterion("absenteeismCause like", value, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseNotLike(String value) {
|
|
|
+ addCriterion("absenteeismCause not like", value, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseIn(List<String> values) {
|
|
|
+ addCriterion("absenteeismCause in", values, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseNotIn(List<String> values) {
|
|
|
+ addCriterion("absenteeismCause not in", values, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseBetween(String value1, String value2) {
|
|
|
+ addCriterion("absenteeismCause between", value1, value2, "absenteeismcause");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAbsenteeismcauseNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("absenteeismCause not between", value1, value2, "absenteeismcause");
|
|
|
+ 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 andCreateuseridIsNull() {
|
|
|
+ addCriterion("createUserId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridIsNotNull() {
|
|
|
+ addCriterion("createUserId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridEqualTo(String value) {
|
|
|
+ addCriterion("createUserId =", value, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridNotEqualTo(String value) {
|
|
|
+ addCriterion("createUserId <>", value, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridGreaterThan(String value) {
|
|
|
+ addCriterion("createUserId >", value, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("createUserId >=", value, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridLessThan(String value) {
|
|
|
+ addCriterion("createUserId <", value, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("createUserId <=", value, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridLike(String value) {
|
|
|
+ addCriterion("createUserId like", value, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridNotLike(String value) {
|
|
|
+ addCriterion("createUserId not like", value, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridIn(List<String> values) {
|
|
|
+ addCriterion("createUserId in", values, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridNotIn(List<String> values) {
|
|
|
+ addCriterion("createUserId not in", values, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridBetween(String value1, String value2) {
|
|
|
+ addCriterion("createUserId between", value1, value2, "createuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateuseridNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("createUserId not between", value1, value2, "createuserid");
|
|
|
+ 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 andUpdateuseridIsNull() {
|
|
|
+ addCriterion("updateUserId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridIsNotNull() {
|
|
|
+ addCriterion("updateUserId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridEqualTo(String value) {
|
|
|
+ addCriterion("updateUserId =", value, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridNotEqualTo(String value) {
|
|
|
+ addCriterion("updateUserId <>", value, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridGreaterThan(String value) {
|
|
|
+ addCriterion("updateUserId >", value, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("updateUserId >=", value, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridLessThan(String value) {
|
|
|
+ addCriterion("updateUserId <", value, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("updateUserId <=", value, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridLike(String value) {
|
|
|
+ addCriterion("updateUserId like", value, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridNotLike(String value) {
|
|
|
+ addCriterion("updateUserId not like", value, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridIn(List<String> values) {
|
|
|
+ addCriterion("updateUserId in", values, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridNotIn(List<String> values) {
|
|
|
+ addCriterion("updateUserId not in", values, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridBetween(String value1, String value2) {
|
|
|
+ addCriterion("updateUserId between", value1, value2, "updateuserid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateuseridNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("updateUserId not between", value1, value2, "updateuserid");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|