|
@@ -0,0 +1,529 @@
|
|
|
+package com.hz.employmentsite.model;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class PcWorkcategoryExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public PcWorkcategoryExample() {
|
|
|
+ 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 andWorkCategoryIDIsNull() {
|
|
|
+ addCriterion("WorkCategoryID is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDIsNotNull() {
|
|
|
+ addCriterion("WorkCategoryID is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDEqualTo(String value) {
|
|
|
+ addCriterion("WorkCategoryID =", value, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDNotEqualTo(String value) {
|
|
|
+ addCriterion("WorkCategoryID <>", value, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDGreaterThan(String value) {
|
|
|
+ addCriterion("WorkCategoryID >", value, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("WorkCategoryID >=", value, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDLessThan(String value) {
|
|
|
+ addCriterion("WorkCategoryID <", value, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("WorkCategoryID <=", value, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDLike(String value) {
|
|
|
+ addCriterion("WorkCategoryID like", value, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDNotLike(String value) {
|
|
|
+ addCriterion("WorkCategoryID not like", value, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDIn(List<String> values) {
|
|
|
+ addCriterion("WorkCategoryID in", values, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDNotIn(List<String> values) {
|
|
|
+ addCriterion("WorkCategoryID not in", values, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDBetween(String value1, String value2) {
|
|
|
+ addCriterion("WorkCategoryID between", value1, value2, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryIDNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("WorkCategoryID not between", value1, value2, "workCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDIsNull() {
|
|
|
+ addCriterion("ParentWorkCategoryID is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDIsNotNull() {
|
|
|
+ addCriterion("ParentWorkCategoryID is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDEqualTo(String value) {
|
|
|
+ addCriterion("ParentWorkCategoryID =", value, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDNotEqualTo(String value) {
|
|
|
+ addCriterion("ParentWorkCategoryID <>", value, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDGreaterThan(String value) {
|
|
|
+ addCriterion("ParentWorkCategoryID >", value, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("ParentWorkCategoryID >=", value, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDLessThan(String value) {
|
|
|
+ addCriterion("ParentWorkCategoryID <", value, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("ParentWorkCategoryID <=", value, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDLike(String value) {
|
|
|
+ addCriterion("ParentWorkCategoryID like", value, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDNotLike(String value) {
|
|
|
+ addCriterion("ParentWorkCategoryID not like", value, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDIn(List<String> values) {
|
|
|
+ addCriterion("ParentWorkCategoryID in", values, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDNotIn(List<String> values) {
|
|
|
+ addCriterion("ParentWorkCategoryID not in", values, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDBetween(String value1, String value2) {
|
|
|
+ addCriterion("ParentWorkCategoryID between", value1, value2, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentWorkCategoryIDNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("ParentWorkCategoryID not between", value1, value2, "parentWorkCategoryID");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameIsNull() {
|
|
|
+ addCriterion("WorkCategoryName is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameIsNotNull() {
|
|
|
+ addCriterion("WorkCategoryName is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameEqualTo(String value) {
|
|
|
+ addCriterion("WorkCategoryName =", value, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameNotEqualTo(String value) {
|
|
|
+ addCriterion("WorkCategoryName <>", value, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameGreaterThan(String value) {
|
|
|
+ addCriterion("WorkCategoryName >", value, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("WorkCategoryName >=", value, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameLessThan(String value) {
|
|
|
+ addCriterion("WorkCategoryName <", value, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("WorkCategoryName <=", value, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameLike(String value) {
|
|
|
+ addCriterion("WorkCategoryName like", value, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameNotLike(String value) {
|
|
|
+ addCriterion("WorkCategoryName not like", value, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameIn(List<String> values) {
|
|
|
+ addCriterion("WorkCategoryName in", values, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameNotIn(List<String> values) {
|
|
|
+ addCriterion("WorkCategoryName not in", values, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("WorkCategoryName between", value1, value2, "workCategoryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWorkCategoryNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("WorkCategoryName not between", value1, value2, "workCategoryName");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|