|
@@ -0,0 +1,2002 @@
|
|
|
+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 PlanAccountExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ protected Page page;
|
|
|
+
|
|
|
+ public PlanAccountExample() {
|
|
|
+ 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 andAccountIdIsNull() {
|
|
|
+ addCriterion("account_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdIsNotNull() {
|
|
|
+ addCriterion("account_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdEqualTo(String value) {
|
|
|
+ addCriterion("account_id =", value, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdNotEqualTo(String value) {
|
|
|
+ addCriterion("account_id <>", value, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdGreaterThan(String value) {
|
|
|
+ addCriterion("account_id >", value, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("account_id >=", value, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdLessThan(String value) {
|
|
|
+ addCriterion("account_id <", value, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("account_id <=", value, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdLike(String value) {
|
|
|
+ addCriterion("account_id like", value, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdNotLike(String value) {
|
|
|
+ addCriterion("account_id not like", value, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdIn(List<String> values) {
|
|
|
+ addCriterion("account_id in", values, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdNotIn(List<String> values) {
|
|
|
+ addCriterion("account_id not in", values, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("account_id between", value1, value2, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("account_id not between", value1, value2, "accountId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameIsNull() {
|
|
|
+ addCriterion("account_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameIsNotNull() {
|
|
|
+ addCriterion("account_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameEqualTo(String value) {
|
|
|
+ addCriterion("account_name =", value, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameNotEqualTo(String value) {
|
|
|
+ addCriterion("account_name <>", value, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameGreaterThan(String value) {
|
|
|
+ addCriterion("account_name >", value, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("account_name >=", value, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameLessThan(String value) {
|
|
|
+ addCriterion("account_name <", value, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("account_name <=", value, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameLike(String value) {
|
|
|
+ addCriterion("account_name like", value, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameNotLike(String value) {
|
|
|
+ addCriterion("account_name not like", value, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameIn(List<String> values) {
|
|
|
+ addCriterion("account_name in", values, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameNotIn(List<String> values) {
|
|
|
+ addCriterion("account_name not in", values, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("account_name between", value1, value2, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccountNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("account_name not between", value1, value2, "accountName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdIsNull() {
|
|
|
+ addCriterion("gh_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdIsNotNull() {
|
|
|
+ addCriterion("gh_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdEqualTo(String value) {
|
|
|
+ addCriterion("gh_id =", value, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdNotEqualTo(String value) {
|
|
|
+ addCriterion("gh_id <>", value, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdGreaterThan(String value) {
|
|
|
+ addCriterion("gh_id >", value, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("gh_id >=", value, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdLessThan(String value) {
|
|
|
+ addCriterion("gh_id <", value, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("gh_id <=", value, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdLike(String value) {
|
|
|
+ addCriterion("gh_id like", value, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdNotLike(String value) {
|
|
|
+ addCriterion("gh_id not like", value, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdIn(List<String> values) {
|
|
|
+ addCriterion("gh_id in", values, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdNotIn(List<String> values) {
|
|
|
+ addCriterion("gh_id not in", values, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("gh_id between", value1, value2, "ghId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGhIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("gh_id not between", value1, value2, "ghId");
|
|
|
+ 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 andMiniStrategyIsNull() {
|
|
|
+ addCriterion("mini_strategy is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyIsNotNull() {
|
|
|
+ addCriterion("mini_strategy is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyEqualTo(String value) {
|
|
|
+ addCriterion("mini_strategy =", value, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyNotEqualTo(String value) {
|
|
|
+ addCriterion("mini_strategy <>", value, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyGreaterThan(String value) {
|
|
|
+ addCriterion("mini_strategy >", value, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("mini_strategy >=", value, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyLessThan(String value) {
|
|
|
+ addCriterion("mini_strategy <", value, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("mini_strategy <=", value, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyLike(String value) {
|
|
|
+ addCriterion("mini_strategy like", value, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyNotLike(String value) {
|
|
|
+ addCriterion("mini_strategy not like", value, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyIn(List<String> values) {
|
|
|
+ addCriterion("mini_strategy in", values, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyNotIn(List<String> values) {
|
|
|
+ addCriterion("mini_strategy not in", values, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyBetween(String value1, String value2) {
|
|
|
+ addCriterion("mini_strategy between", value1, value2, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniStrategyNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("mini_strategy not between", value1, value2, "miniStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeIsNull() {
|
|
|
+ addCriterion("miniprogram_use_type is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeIsNotNull() {
|
|
|
+ addCriterion("miniprogram_use_type is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_use_type =", value, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_use_type <>", value, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("miniprogram_use_type >", value, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_use_type >=", value, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeLessThan(Integer value) {
|
|
|
+ addCriterion("miniprogram_use_type <", value, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("miniprogram_use_type <=", value, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeIn(List<Integer> values) {
|
|
|
+ addCriterion("miniprogram_use_type in", values, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("miniprogram_use_type not in", values, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("miniprogram_use_type between", value1, value2, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMiniprogramUseTypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("miniprogram_use_type not between", value1, value2, "miniprogramUseType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyIsNull() {
|
|
|
+ addCriterion("sort_strategy is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyIsNotNull() {
|
|
|
+ addCriterion("sort_strategy is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyEqualTo(String value) {
|
|
|
+ addCriterion("sort_strategy =", value, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyNotEqualTo(String value) {
|
|
|
+ addCriterion("sort_strategy <>", value, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyGreaterThan(String value) {
|
|
|
+ addCriterion("sort_strategy >", value, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sort_strategy >=", value, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyLessThan(String value) {
|
|
|
+ addCriterion("sort_strategy <", value, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sort_strategy <=", value, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyLike(String value) {
|
|
|
+ addCriterion("sort_strategy like", value, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyNotLike(String value) {
|
|
|
+ addCriterion("sort_strategy not like", value, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyIn(List<String> values) {
|
|
|
+ addCriterion("sort_strategy in", values, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyNotIn(List<String> values) {
|
|
|
+ addCriterion("sort_strategy not in", values, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyBetween(String value1, String value2) {
|
|
|
+ addCriterion("sort_strategy between", value1, value2, "sortStrategy");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortStrategyNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sort_strategy not between", value1, value2, "sortStrategy");
|
|
|
+ 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 Criteria andMatchStatusIsNull() {
|
|
|
+ addCriterion("match_status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusIsNotNull() {
|
|
|
+ addCriterion("match_status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("match_status =", value, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("match_status <>", value, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("match_status >", value, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("match_status >=", value, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusLessThan(Integer value) {
|
|
|
+ addCriterion("match_status <", value, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("match_status <=", value, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("match_status in", values, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("match_status not in", values, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("match_status between", value1, value2, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMatchStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("match_status not between", value1, value2, "matchStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountIsNull() {
|
|
|
+ addCriterion("retry_count is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountIsNotNull() {
|
|
|
+ addCriterion("retry_count is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountEqualTo(Integer value) {
|
|
|
+ addCriterion("retry_count =", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountNotEqualTo(Integer value) {
|
|
|
+ addCriterion("retry_count <>", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountGreaterThan(Integer value) {
|
|
|
+ addCriterion("retry_count >", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("retry_count >=", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountLessThan(Integer value) {
|
|
|
+ addCriterion("retry_count <", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("retry_count <=", value, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountIn(List<Integer> values) {
|
|
|
+ addCriterion("retry_count in", values, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountNotIn(List<Integer> values) {
|
|
|
+ addCriterion("retry_count not in", values, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("retry_count between", value1, value2, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRetryCountNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("retry_count not between", value1, value2, "retryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountIsNull() {
|
|
|
+ addCriterion("send_count is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountIsNotNull() {
|
|
|
+ addCriterion("send_count is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountEqualTo(Integer value) {
|
|
|
+ addCriterion("send_count =", value, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountNotEqualTo(Integer value) {
|
|
|
+ addCriterion("send_count <>", value, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountGreaterThan(Integer value) {
|
|
|
+ addCriterion("send_count >", value, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("send_count >=", value, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountLessThan(Integer value) {
|
|
|
+ addCriterion("send_count <", value, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("send_count <=", value, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountIn(List<Integer> values) {
|
|
|
+ addCriterion("send_count in", values, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountNotIn(List<Integer> values) {
|
|
|
+ addCriterion("send_count not in", values, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("send_count between", value1, value2, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSendCountNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("send_count not between", value1, value2, "sendCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagIsNull() {
|
|
|
+ addCriterion("publish_open_flag is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagIsNotNull() {
|
|
|
+ addCriterion("publish_open_flag is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_open_flag =", value, "publishOpenFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagNotEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_open_flag <>", value, "publishOpenFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagGreaterThan(Integer value) {
|
|
|
+ addCriterion("publish_open_flag >", value, "publishOpenFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_open_flag >=", value, "publishOpenFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagLessThan(Integer value) {
|
|
|
+ addCriterion("publish_open_flag <", value, "publishOpenFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("publish_open_flag <=", value, "publishOpenFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_open_flag in", values, "publishOpenFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagNotIn(List<Integer> values) {
|
|
|
+ addCriterion("publish_open_flag not in", values, "publishOpenFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_open_flag between", value1, value2, "publishOpenFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPublishOpenFlagNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("publish_open_flag not between", value1, value2, "publishOpenFlag");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|