|
@@ -0,0 +1,1292 @@
|
|
|
+package com.tzld.piaoquan.longarticle.model.po;
|
|
|
+
|
|
|
+import com.tzld.piaoquan.longarticle.utils.page.Page;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class PlanExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ protected Page page;
|
|
|
+
|
|
|
+ public PlanExample() {
|
|
|
+ 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 setPage(Page page) {
|
|
|
+ this.page=page;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Page getPage() {
|
|
|
+ return page;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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(Long value) {
|
|
|
+ addCriterion("id =", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("id <>", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdGreaterThan(Long value) {
|
|
|
+ addCriterion("id >", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("id >=", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLessThan(Long value) {
|
|
|
+ addCriterion("id <", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("id <=", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdIn(List<Long> values) {
|
|
|
+ addCriterion("id in", values, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("id not in", values, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("id between", value1, value2, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("id not between", value1, value2, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdIsNull() {
|
|
|
+ addCriterion("plan_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdIsNotNull() {
|
|
|
+ addCriterion("plan_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdEqualTo(String value) {
|
|
|
+ addCriterion("plan_id =", value, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdNotEqualTo(String value) {
|
|
|
+ addCriterion("plan_id <>", value, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdGreaterThan(String value) {
|
|
|
+ addCriterion("plan_id >", value, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("plan_id >=", value, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdLessThan(String value) {
|
|
|
+ addCriterion("plan_id <", value, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("plan_id <=", value, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdLike(String value) {
|
|
|
+ addCriterion("plan_id like", value, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdNotLike(String value) {
|
|
|
+ addCriterion("plan_id not like", value, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdIn(List<String> values) {
|
|
|
+ addCriterion("plan_id in", values, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdNotIn(List<String> values) {
|
|
|
+ addCriterion("plan_id not in", values, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("plan_id between", value1, value2, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("plan_id not between", value1, value2, "planId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameIsNull() {
|
|
|
+ addCriterion("plan_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameIsNotNull() {
|
|
|
+ addCriterion("plan_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameEqualTo(String value) {
|
|
|
+ addCriterion("plan_name =", value, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameNotEqualTo(String value) {
|
|
|
+ addCriterion("plan_name <>", value, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameGreaterThan(String value) {
|
|
|
+ addCriterion("plan_name >", value, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("plan_name >=", value, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameLessThan(String value) {
|
|
|
+ addCriterion("plan_name <", value, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("plan_name <=", value, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameLike(String value) {
|
|
|
+ addCriterion("plan_name like", value, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameNotLike(String value) {
|
|
|
+ addCriterion("plan_name not like", value, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameIn(List<String> values) {
|
|
|
+ addCriterion("plan_name in", values, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameNotIn(List<String> values) {
|
|
|
+ addCriterion("plan_name not in", values, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("plan_name between", value1, value2, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPlanNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("plan_name not between", value1, value2, "planName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateIsNull() {
|
|
|
+ addCriterion("publish_rate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateIsNotNull() {
|
|
|
+ addCriterion("publish_rate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_rate =", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateNotEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_rate <>", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateGreaterThan(Integer value) {
|
|
|
+ addCriterion("publish_rate >", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_rate >=", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateLessThan(Integer value) {
|
|
|
+ addCriterion("publish_rate <", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_rate <=", value, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_rate in", values, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateNotIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_rate not in", values, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_rate between", value1, value2, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishRateNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_rate not between", value1, value2, "publishRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateIsNull() {
|
|
|
+ addCriterion("publish_date is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateIsNotNull() {
|
|
|
+ addCriterion("publish_date is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateEqualTo(String value) {
|
|
|
+ addCriterion("publish_date =", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateNotEqualTo(String value) {
|
|
|
+ addCriterion("publish_date <>", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateGreaterThan(String value) {
|
|
|
+ addCriterion("publish_date >", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_date >=", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateLessThan(String value) {
|
|
|
+ addCriterion("publish_date <", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_date <=", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateLike(String value) {
|
|
|
+ addCriterion("publish_date like", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateNotLike(String value) {
|
|
|
+ addCriterion("publish_date not like", value, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateIn(List<String> values) {
|
|
|
+ addCriterion("publish_date in", values, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateNotIn(List<String> values) {
|
|
|
+ addCriterion("publish_date not in", values, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_date between", value1, value2, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishDateNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_date not between", value1, value2, "publishDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartIsNull() {
|
|
|
+ addCriterion("publish_window_start is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartIsNotNull() {
|
|
|
+ addCriterion("publish_window_start is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_start =", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartNotEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_start <>", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartGreaterThan(String value) {
|
|
|
+ addCriterion("publish_window_start >", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_start >=", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartLessThan(String value) {
|
|
|
+ addCriterion("publish_window_start <", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_start <=", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartLike(String value) {
|
|
|
+ addCriterion("publish_window_start like", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartNotLike(String value) {
|
|
|
+ addCriterion("publish_window_start not like", value, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartIn(List<String> values) {
|
|
|
+ addCriterion("publish_window_start in", values, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartNotIn(List<String> values) {
|
|
|
+ addCriterion("publish_window_start not in", values, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_window_start between", value1, value2, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowStartNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_window_start not between", value1, value2, "publishWindowStart");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndIsNull() {
|
|
|
+ addCriterion("publish_window_end is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndIsNotNull() {
|
|
|
+ addCriterion("publish_window_end is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_end =", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndNotEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_end <>", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndGreaterThan(String value) {
|
|
|
+ addCriterion("publish_window_end >", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_end >=", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndLessThan(String value) {
|
|
|
+ addCriterion("publish_window_end <", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_window_end <=", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndLike(String value) {
|
|
|
+ addCriterion("publish_window_end like", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndNotLike(String value) {
|
|
|
+ addCriterion("publish_window_end not like", value, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndIn(List<String> values) {
|
|
|
+ addCriterion("publish_window_end in", values, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndNotIn(List<String> values) {
|
|
|
+ addCriterion("publish_window_end not in", values, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_window_end between", value1, value2, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishWindowEndNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_window_end not between", value1, value2, "publishWindowEnd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalIsNull() {
|
|
|
+ addCriterion("publish_time_interval is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalIsNotNull() {
|
|
|
+ addCriterion("publish_time_interval is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_time_interval =", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalNotEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_time_interval <>", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalGreaterThan(Integer value) {
|
|
|
+ addCriterion("publish_time_interval >", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_time_interval >=", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalLessThan(Integer value) {
|
|
|
+ addCriterion("publish_time_interval <", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_time_interval <=", value, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_time_interval in", values, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalNotIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_time_interval not in", values, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_time_interval between", value1, value2, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishTimeIntervalNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_time_interval not between", value1, value2, "publishTimeInterval");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumIsNull() {
|
|
|
+ addCriterion("publish_num is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumIsNotNull() {
|
|
|
+ addCriterion("publish_num is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_num =", value, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumNotEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_num <>", value, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumGreaterThan(Integer value) {
|
|
|
+ addCriterion("publish_num >", value, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_num >=", value, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumLessThan(Integer value) {
|
|
|
+ addCriterion("publish_num <", value, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_num <=", value, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_num in", values, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumNotIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_num not in", values, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_num between", value1, value2, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishNumNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_num not between", value1, value2, "publishNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumIsNull() {
|
|
|
+ addCriterion("publish_pre_num is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumIsNotNull() {
|
|
|
+ addCriterion("publish_pre_num is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_num =", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumNotEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_num <>", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumGreaterThan(Integer value) {
|
|
|
+ addCriterion("publish_pre_num >", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_num >=", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumLessThan(Integer value) {
|
|
|
+ addCriterion("publish_pre_num <", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_num <=", value, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_pre_num in", values, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumNotIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_pre_num not in", values, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_pre_num between", value1, value2, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreNumNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_pre_num not between", value1, value2, "publishPreNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumIsNull() {
|
|
|
+ addCriterion("publish_pre_min_num is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumIsNotNull() {
|
|
|
+ addCriterion("publish_pre_min_num is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_min_num =", value, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumNotEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_min_num <>", value, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumGreaterThan(Integer value) {
|
|
|
+ addCriterion("publish_pre_min_num >", value, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_min_num >=", value, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumLessThan(Integer value) {
|
|
|
+ addCriterion("publish_pre_min_num <", value, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_pre_min_num <=", value, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_pre_min_num in", values, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumNotIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_pre_min_num not in", values, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_pre_min_num between", value1, value2, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPreMinNumNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_pre_min_num not between", value1, value2, "publishPreMinNum");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeIsNull() {
|
|
|
+ addCriterion("publish_push_time is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeIsNotNull() {
|
|
|
+ addCriterion("publish_push_time is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeEqualTo(String value) {
|
|
|
+ addCriterion("publish_push_time =", value, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeNotEqualTo(String value) {
|
|
|
+ addCriterion("publish_push_time <>", value, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeGreaterThan(String value) {
|
|
|
+ addCriterion("publish_push_time >", value, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_push_time >=", value, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeLessThan(String value) {
|
|
|
+ addCriterion("publish_push_time <", value, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("publish_push_time <=", value, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeLike(String value) {
|
|
|
+ addCriterion("publish_push_time like", value, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeNotLike(String value) {
|
|
|
+ addCriterion("publish_push_time not like", value, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeIn(List<String> values) {
|
|
|
+ addCriterion("publish_push_time in", values, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeNotIn(List<String> values) {
|
|
|
+ addCriterion("publish_push_time not in", values, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_push_time between", value1, value2, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishPushTimeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("publish_push_time not between", value1, value2, "publishPushTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeIsNull() {
|
|
|
+ addCriterion("push_type is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeIsNotNull() {
|
|
|
+ addCriterion("push_type is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeEqualTo(Integer value) {
|
|
|
+ addCriterion("push_type =", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("push_type <>", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("push_type >", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("push_type >=", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeLessThan(Integer value) {
|
|
|
+ addCriterion("push_type <", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("push_type <=", value, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeIn(List<Integer> values) {
|
|
|
+ addCriterion("push_type in", values, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("push_type not in", values, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("push_type between", value1, value2, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushTypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("push_type not between", value1, value2, "pushType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagIsNull() {
|
|
|
+ addCriterion("miniprogram_insert_flag is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagIsNotNull() {
|
|
|
+ addCriterion("miniprogram_insert_flag is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag =", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagNotEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag <>", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagGreaterThan(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag >", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag >=", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagLessThan(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag <", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_insert_flag <=", value, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagIn(List<Integer> values) {
|
|
|
+ addCriterion("miniprogram_insert_flag in", values, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagNotIn(List<Integer> values) {
|
|
|
+ addCriterion("miniprogram_insert_flag not in", values, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("miniprogram_insert_flag between", value1, value2, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramInsertFlagNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("miniprogram_insert_flag not between", value1, value2, "miniprogramInsertFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteIsNull() {
|
|
|
+ addCriterion("is_delete is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteIsNotNull() {
|
|
|
+ addCriterion("is_delete is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteEqualTo(Integer value) {
|
|
|
+ addCriterion("is_delete =", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteNotEqualTo(Integer value) {
|
|
|
+ addCriterion("is_delete <>", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteGreaterThan(Integer value) {
|
|
|
+ addCriterion("is_delete >", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("is_delete >=", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteLessThan(Integer value) {
|
|
|
+ addCriterion("is_delete <", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("is_delete <=", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteIn(List<Integer> values) {
|
|
|
+ addCriterion("is_delete in", values, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteNotIn(List<Integer> values) {
|
|
|
+ addCriterion("is_delete not in", values, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("is_delete between", value1, value2, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("is_delete not between", value1, value2, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeIsNull() {
|
|
|
+ addCriterion("create_time is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeIsNotNull() {
|
|
|
+ addCriterion("create_time is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeEqualTo(Date value) {
|
|
|
+ addCriterion("create_time =", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeNotEqualTo(Date value) {
|
|
|
+ addCriterion("create_time <>", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeGreaterThan(Date value) {
|
|
|
+ addCriterion("create_time >", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("create_time >=", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeLessThan(Date value) {
|
|
|
+ addCriterion("create_time <", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("create_time <=", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeIn(List<Date> values) {
|
|
|
+ addCriterion("create_time in", values, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeNotIn(List<Date> values) {
|
|
|
+ addCriterion("create_time not in", values, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("create_time between", value1, value2, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("create_time not between", value1, value2, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeIsNull() {
|
|
|
+ addCriterion("update_time is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeIsNotNull() {
|
|
|
+ addCriterion("update_time is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeEqualTo(Date value) {
|
|
|
+ addCriterion("update_time =", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeNotEqualTo(Date value) {
|
|
|
+ addCriterion("update_time <>", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeGreaterThan(Date value) {
|
|
|
+ addCriterion("update_time >", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("update_time >=", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeLessThan(Date value) {
|
|
|
+ addCriterion("update_time <", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("update_time <=", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeIn(List<Date> values) {
|
|
|
+ addCriterion("update_time in", values, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeNotIn(List<Date> values) {
|
|
|
+ addCriterion("update_time not in", values, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("update_time between", value1, value2, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("update_time not between", value1, value2, "updateTime");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|