|
@@ -0,0 +1,651 @@
|
|
|
+package com.ghsc.partybuild.model;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class ShykPartytargetExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public ShykPartytargetExample() {
|
|
|
+ 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 andPartycodeIsNull() {
|
|
|
+ addCriterion("partyCode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeIsNotNull() {
|
|
|
+ addCriterion("partyCode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeEqualTo(String value) {
|
|
|
+ addCriterion("partyCode =", value, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeNotEqualTo(String value) {
|
|
|
+ addCriterion("partyCode <>", value, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeGreaterThan(String value) {
|
|
|
+ addCriterion("partyCode >", value, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("partyCode >=", value, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeLessThan(String value) {
|
|
|
+ addCriterion("partyCode <", value, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("partyCode <=", value, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeLike(String value) {
|
|
|
+ addCriterion("partyCode like", value, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeNotLike(String value) {
|
|
|
+ addCriterion("partyCode not like", value, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeIn(List<String> values) {
|
|
|
+ addCriterion("partyCode in", values, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeNotIn(List<String> values) {
|
|
|
+ addCriterion("partyCode not in", values, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("partyCode between", value1, value2, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPartycodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("partyCode not between", value1, value2, "partycode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeIsNull() {
|
|
|
+ addCriterion("shykType is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeIsNotNull() {
|
|
|
+ addCriterion("shykType is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeEqualTo(Integer value) {
|
|
|
+ addCriterion("shykType =", value, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("shykType <>", value, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("shykType >", value, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("shykType >=", value, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeLessThan(Integer value) {
|
|
|
+ addCriterion("shykType <", value, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("shykType <=", value, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeIn(List<Integer> values) {
|
|
|
+ addCriterion("shykType in", values, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("shykType not in", values, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("shykType between", value1, value2, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShyktypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("shykType not between", value1, value2, "shyktype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeIsNull() {
|
|
|
+ addCriterion("targetType is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeIsNotNull() {
|
|
|
+ addCriterion("targetType is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeEqualTo(Integer value) {
|
|
|
+ addCriterion("targetType =", value, "targettype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("targetType <>", value, "targettype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("targetType >", value, "targettype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("targetType >=", value, "targettype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeLessThan(Integer value) {
|
|
|
+ addCriterion("targetType <", value, "targettype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("targetType <=", value, "targettype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeIn(List<Integer> values) {
|
|
|
+ addCriterion("targetType in", values, "targettype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("targetType not in", values, "targettype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("targetType between", value1, value2, "targettype");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTargettypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("targetType not between", value1, value2, "targettype");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|