|
@@ -0,0 +1,529 @@
|
|
|
|
+package com.hz.employmentsite.model;
|
|
|
|
+
|
|
|
|
+import java.util.ArrayList;
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
|
|
+public class PcOccupationalExample {
|
|
|
|
+ protected String orderByClause;
|
|
|
|
+
|
|
|
|
+ protected boolean distinct;
|
|
|
|
+
|
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
|
+
|
|
|
|
+ public PcOccupationalExample() {
|
|
|
|
+ oredCriteria = new ArrayList<>();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ 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<>();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ 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 andOccupationalIDIsNull() {
|
|
|
|
+ addCriterion("OccupationalID is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDIsNotNull() {
|
|
|
|
+ addCriterion("OccupationalID is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDEqualTo(String value) {
|
|
|
|
+ addCriterion("OccupationalID =", value, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDNotEqualTo(String value) {
|
|
|
|
+ addCriterion("OccupationalID <>", value, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDGreaterThan(String value) {
|
|
|
|
+ addCriterion("OccupationalID >", value, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDGreaterThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("OccupationalID >=", value, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDLessThan(String value) {
|
|
|
|
+ addCriterion("OccupationalID <", value, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDLessThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("OccupationalID <=", value, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDLike(String value) {
|
|
|
|
+ addCriterion("OccupationalID like", value, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDNotLike(String value) {
|
|
|
|
+ addCriterion("OccupationalID not like", value, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDIn(List<String> values) {
|
|
|
|
+ addCriterion("OccupationalID in", values, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDNotIn(List<String> values) {
|
|
|
|
+ addCriterion("OccupationalID not in", values, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("OccupationalID between", value1, value2, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalIDNotBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("OccupationalID not between", value1, value2, "occupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDIsNull() {
|
|
|
|
+ addCriterion("ParentOccupationalID is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDIsNotNull() {
|
|
|
|
+ addCriterion("ParentOccupationalID is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDEqualTo(String value) {
|
|
|
|
+ addCriterion("ParentOccupationalID =", value, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDNotEqualTo(String value) {
|
|
|
|
+ addCriterion("ParentOccupationalID <>", value, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDGreaterThan(String value) {
|
|
|
|
+ addCriterion("ParentOccupationalID >", value, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDGreaterThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("ParentOccupationalID >=", value, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDLessThan(String value) {
|
|
|
|
+ addCriterion("ParentOccupationalID <", value, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDLessThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("ParentOccupationalID <=", value, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDLike(String value) {
|
|
|
|
+ addCriterion("ParentOccupationalID like", value, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDNotLike(String value) {
|
|
|
|
+ addCriterion("ParentOccupationalID not like", value, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDIn(List<String> values) {
|
|
|
|
+ addCriterion("ParentOccupationalID in", values, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDNotIn(List<String> values) {
|
|
|
|
+ addCriterion("ParentOccupationalID not in", values, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("ParentOccupationalID between", value1, value2, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andParentOccupationalIDNotBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("ParentOccupationalID not between", value1, value2, "parentOccupationalID");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameIsNull() {
|
|
|
|
+ addCriterion("OccupationalName is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameIsNotNull() {
|
|
|
|
+ addCriterion("OccupationalName is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameEqualTo(String value) {
|
|
|
|
+ addCriterion("OccupationalName =", value, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameNotEqualTo(String value) {
|
|
|
|
+ addCriterion("OccupationalName <>", value, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameGreaterThan(String value) {
|
|
|
|
+ addCriterion("OccupationalName >", value, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameGreaterThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("OccupationalName >=", value, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameLessThan(String value) {
|
|
|
|
+ addCriterion("OccupationalName <", value, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameLessThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("OccupationalName <=", value, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameLike(String value) {
|
|
|
|
+ addCriterion("OccupationalName like", value, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameNotLike(String value) {
|
|
|
|
+ addCriterion("OccupationalName not like", value, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameIn(List<String> values) {
|
|
|
|
+ addCriterion("OccupationalName in", values, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameNotIn(List<String> values) {
|
|
|
|
+ addCriterion("OccupationalName not in", values, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("OccupationalName between", value1, value2, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOccupationalNameNotBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("OccupationalName not between", value1, value2, "occupationalName");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoIsNull() {
|
|
|
|
+ addCriterion("OrderNo is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoIsNotNull() {
|
|
|
|
+ addCriterion("OrderNo is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoEqualTo(Integer value) {
|
|
|
|
+ addCriterion("OrderNo =", value, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoNotEqualTo(Integer value) {
|
|
|
|
+ addCriterion("OrderNo <>", value, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoGreaterThan(Integer value) {
|
|
|
|
+ addCriterion("OrderNo >", value, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoGreaterThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("OrderNo >=", value, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoLessThan(Integer value) {
|
|
|
|
+ addCriterion("OrderNo <", value, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoLessThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("OrderNo <=", value, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoIn(List<Integer> values) {
|
|
|
|
+ addCriterion("OrderNo in", values, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoNotIn(List<Integer> values) {
|
|
|
|
+ addCriterion("OrderNo not in", values, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("OrderNo between", value1, value2, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andOrderNoNotBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("OrderNo not between", value1, value2, "orderNo");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusIsNull() {
|
|
|
|
+ addCriterion("Status is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusIsNotNull() {
|
|
|
|
+ addCriterion("Status is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusEqualTo(Integer value) {
|
|
|
|
+ addCriterion("Status =", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusNotEqualTo(Integer value) {
|
|
|
|
+ addCriterion("Status <>", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusGreaterThan(Integer value) {
|
|
|
|
+ addCriterion("Status >", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("Status >=", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusLessThan(Integer value) {
|
|
|
|
+ addCriterion("Status <", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusLessThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("Status <=", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusIn(List<Integer> values) {
|
|
|
|
+ addCriterion("Status in", values, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusNotIn(List<Integer> values) {
|
|
|
|
+ addCriterion("Status not in", values, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("Status between", value1, value2, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusNotBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("Status not between", value1, value2, "status");
|
|
|
|
+ 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);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|