|
@@ -0,0 +1,2052 @@
|
|
|
+package com.tzld.piaoquan.featurestools.model.po;
|
|
|
+
|
|
|
+import com.tzld.piaoquan.featurestools.util.page.Page;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class CreativeExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ protected Page page;
|
|
|
+
|
|
|
+ public CreativeExample() {
|
|
|
+ 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 andAdIdIsNull() {
|
|
|
+ addCriterion("ad_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdIsNotNull() {
|
|
|
+ addCriterion("ad_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdEqualTo(Long value) {
|
|
|
+ addCriterion("ad_id =", value, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("ad_id <>", value, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdGreaterThan(Long value) {
|
|
|
+ addCriterion("ad_id >", value, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("ad_id >=", value, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdLessThan(Long value) {
|
|
|
+ addCriterion("ad_id <", value, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("ad_id <=", value, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdIn(List<Long> values) {
|
|
|
+ addCriterion("ad_id in", values, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("ad_id not in", values, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("ad_id between", value1, value2, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("ad_id not between", value1, value2, "adId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeIsNull() {
|
|
|
+ addCriterion("creative_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeIsNotNull() {
|
|
|
+ addCriterion("creative_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeEqualTo(String value) {
|
|
|
+ addCriterion("creative_code =", value, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("creative_code <>", value, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeGreaterThan(String value) {
|
|
|
+ addCriterion("creative_code >", value, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("creative_code >=", value, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeLessThan(String value) {
|
|
|
+ addCriterion("creative_code <", value, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("creative_code <=", value, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeLike(String value) {
|
|
|
+ addCriterion("creative_code like", value, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeNotLike(String value) {
|
|
|
+ addCriterion("creative_code not like", value, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeIn(List<String> values) {
|
|
|
+ addCriterion("creative_code in", values, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("creative_code not in", values, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("creative_code between", value1, value2, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("creative_code not between", value1, value2, "creativeCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternIsNull() {
|
|
|
+ addCriterion("creative_pattern is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternIsNotNull() {
|
|
|
+ addCriterion("creative_pattern is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternEqualTo(Integer value) {
|
|
|
+ addCriterion("creative_pattern =", value, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternNotEqualTo(Integer value) {
|
|
|
+ addCriterion("creative_pattern <>", value, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternGreaterThan(Integer value) {
|
|
|
+ addCriterion("creative_pattern >", value, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("creative_pattern >=", value, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternLessThan(Integer value) {
|
|
|
+ addCriterion("creative_pattern <", value, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("creative_pattern <=", value, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternIn(List<Integer> values) {
|
|
|
+ addCriterion("creative_pattern in", values, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternNotIn(List<Integer> values) {
|
|
|
+ addCriterion("creative_pattern not in", values, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("creative_pattern between", value1, value2, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativePatternNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("creative_pattern not between", value1, value2, "creativePattern");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdIsNull() {
|
|
|
+ addCriterion("position_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdIsNotNull() {
|
|
|
+ addCriterion("position_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdEqualTo(Integer value) {
|
|
|
+ addCriterion("position_id =", value, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdNotEqualTo(Integer value) {
|
|
|
+ addCriterion("position_id <>", value, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdGreaterThan(Integer value) {
|
|
|
+ addCriterion("position_id >", value, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("position_id >=", value, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdLessThan(Integer value) {
|
|
|
+ addCriterion("position_id <", value, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("position_id <=", value, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdIn(List<Integer> values) {
|
|
|
+ addCriterion("position_id in", values, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdNotIn(List<Integer> values) {
|
|
|
+ addCriterion("position_id not in", values, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("position_id between", value1, value2, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPositionIdNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("position_id not between", value1, value2, "positionId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleIsNull() {
|
|
|
+ addCriterion("creative_title is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleIsNotNull() {
|
|
|
+ addCriterion("creative_title is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleEqualTo(String value) {
|
|
|
+ addCriterion("creative_title =", value, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleNotEqualTo(String value) {
|
|
|
+ addCriterion("creative_title <>", value, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleGreaterThan(String value) {
|
|
|
+ addCriterion("creative_title >", value, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("creative_title >=", value, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleLessThan(String value) {
|
|
|
+ addCriterion("creative_title <", value, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("creative_title <=", value, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleLike(String value) {
|
|
|
+ addCriterion("creative_title like", value, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleNotLike(String value) {
|
|
|
+ addCriterion("creative_title not like", value, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleIn(List<String> values) {
|
|
|
+ addCriterion("creative_title in", values, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleNotIn(List<String> values) {
|
|
|
+ addCriterion("creative_title not in", values, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleBetween(String value1, String value2) {
|
|
|
+ addCriterion("creative_title between", value1, value2, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeTitleNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("creative_title not between", value1, value2, "creativeTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingIsNull() {
|
|
|
+ addCriterion("copywriting is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingIsNotNull() {
|
|
|
+ addCriterion("copywriting is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingEqualTo(String value) {
|
|
|
+ addCriterion("copywriting =", value, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingNotEqualTo(String value) {
|
|
|
+ addCriterion("copywriting <>", value, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingGreaterThan(String value) {
|
|
|
+ addCriterion("copywriting >", value, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("copywriting >=", value, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingLessThan(String value) {
|
|
|
+ addCriterion("copywriting <", value, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("copywriting <=", value, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingLike(String value) {
|
|
|
+ addCriterion("copywriting like", value, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingNotLike(String value) {
|
|
|
+ addCriterion("copywriting not like", value, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingIn(List<String> values) {
|
|
|
+ addCriterion("copywriting in", values, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingNotIn(List<String> values) {
|
|
|
+ addCriterion("copywriting not in", values, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingBetween(String value1, String value2) {
|
|
|
+ addCriterion("copywriting between", value1, value2, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCopywritingNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("copywriting not between", value1, value2, "copywriting");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeIsNull() {
|
|
|
+ addCriterion("material_type is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeIsNotNull() {
|
|
|
+ addCriterion("material_type is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeEqualTo(String value) {
|
|
|
+ addCriterion("material_type =", value, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeNotEqualTo(String value) {
|
|
|
+ addCriterion("material_type <>", value, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeGreaterThan(String value) {
|
|
|
+ addCriterion("material_type >", value, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("material_type >=", value, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeLessThan(String value) {
|
|
|
+ addCriterion("material_type <", value, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("material_type <=", value, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeLike(String value) {
|
|
|
+ addCriterion("material_type like", value, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeNotLike(String value) {
|
|
|
+ addCriterion("material_type not like", value, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeIn(List<String> values) {
|
|
|
+ addCriterion("material_type in", values, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeNotIn(List<String> values) {
|
|
|
+ addCriterion("material_type not in", values, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeBetween(String value1, String value2) {
|
|
|
+ addCriterion("material_type between", value1, value2, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialTypeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("material_type not between", value1, value2, "materialType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressIsNull() {
|
|
|
+ addCriterion("material_address is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressIsNotNull() {
|
|
|
+ addCriterion("material_address is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressEqualTo(String value) {
|
|
|
+ addCriterion("material_address =", value, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressNotEqualTo(String value) {
|
|
|
+ addCriterion("material_address <>", value, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressGreaterThan(String value) {
|
|
|
+ addCriterion("material_address >", value, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("material_address >=", value, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressLessThan(String value) {
|
|
|
+ addCriterion("material_address <", value, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("material_address <=", value, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressLike(String value) {
|
|
|
+ addCriterion("material_address like", value, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressNotLike(String value) {
|
|
|
+ addCriterion("material_address not like", value, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressIn(List<String> values) {
|
|
|
+ addCriterion("material_address in", values, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressNotIn(List<String> values) {
|
|
|
+ addCriterion("material_address not in", values, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressBetween(String value1, String value2) {
|
|
|
+ addCriterion("material_address between", value1, value2, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("material_address not between", value1, value2, "materialAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5IsNull() {
|
|
|
+ addCriterion("material_md5 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5IsNotNull() {
|
|
|
+ addCriterion("material_md5 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5EqualTo(String value) {
|
|
|
+ addCriterion("material_md5 =", value, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5NotEqualTo(String value) {
|
|
|
+ addCriterion("material_md5 <>", value, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5GreaterThan(String value) {
|
|
|
+ addCriterion("material_md5 >", value, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("material_md5 >=", value, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5LessThan(String value) {
|
|
|
+ addCriterion("material_md5 <", value, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("material_md5 <=", value, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5Like(String value) {
|
|
|
+ addCriterion("material_md5 like", value, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5NotLike(String value) {
|
|
|
+ addCriterion("material_md5 not like", value, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5In(List<String> values) {
|
|
|
+ addCriterion("material_md5 in", values, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5NotIn(List<String> values) {
|
|
|
+ addCriterion("material_md5 not in", values, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5Between(String value1, String value2) {
|
|
|
+ addCriterion("material_md5 between", value1, value2, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialMd5NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("material_md5 not between", value1, value2, "materialMd5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdIsNull() {
|
|
|
+ addCriterion("material_address_transcode_job_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdIsNotNull() {
|
|
|
+ addCriterion("material_address_transcode_job_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdEqualTo(Long value) {
|
|
|
+ addCriterion("material_address_transcode_job_id =", value, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("material_address_transcode_job_id <>", value, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdGreaterThan(Long value) {
|
|
|
+ addCriterion("material_address_transcode_job_id >", value, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("material_address_transcode_job_id >=", value, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdLessThan(Long value) {
|
|
|
+ addCriterion("material_address_transcode_job_id <", value, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("material_address_transcode_job_id <=", value, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdIn(List<Long> values) {
|
|
|
+ addCriterion("material_address_transcode_job_id in", values, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("material_address_transcode_job_id not in", values, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("material_address_transcode_job_id between", value1, value2, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMaterialAddressTranscodeJobIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("material_address_transcode_job_id not between", value1, value2, "materialAddressTranscodeJobId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressIsNull() {
|
|
|
+ addCriterion("creative_logo_address is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressIsNotNull() {
|
|
|
+ addCriterion("creative_logo_address is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressEqualTo(String value) {
|
|
|
+ addCriterion("creative_logo_address =", value, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressNotEqualTo(String value) {
|
|
|
+ addCriterion("creative_logo_address <>", value, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressGreaterThan(String value) {
|
|
|
+ addCriterion("creative_logo_address >", value, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("creative_logo_address >=", value, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressLessThan(String value) {
|
|
|
+ addCriterion("creative_logo_address <", value, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("creative_logo_address <=", value, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressLike(String value) {
|
|
|
+ addCriterion("creative_logo_address like", value, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressNotLike(String value) {
|
|
|
+ addCriterion("creative_logo_address not like", value, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressIn(List<String> values) {
|
|
|
+ addCriterion("creative_logo_address in", values, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressNotIn(List<String> values) {
|
|
|
+ addCriterion("creative_logo_address not in", values, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressBetween(String value1, String value2) {
|
|
|
+ addCriterion("creative_logo_address between", value1, value2, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeLogoAddressNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("creative_logo_address not between", value1, value2, "creativeLogoAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextIsNull() {
|
|
|
+ addCriterion("click_button_text is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextIsNotNull() {
|
|
|
+ addCriterion("click_button_text is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextEqualTo(String value) {
|
|
|
+ addCriterion("click_button_text =", value, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextNotEqualTo(String value) {
|
|
|
+ addCriterion("click_button_text <>", value, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextGreaterThan(String value) {
|
|
|
+ addCriterion("click_button_text >", value, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("click_button_text >=", value, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextLessThan(String value) {
|
|
|
+ addCriterion("click_button_text <", value, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("click_button_text <=", value, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextLike(String value) {
|
|
|
+ addCriterion("click_button_text like", value, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextNotLike(String value) {
|
|
|
+ addCriterion("click_button_text not like", value, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextIn(List<String> values) {
|
|
|
+ addCriterion("click_button_text in", values, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextNotIn(List<String> values) {
|
|
|
+ addCriterion("click_button_text not in", values, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextBetween(String value1, String value2) {
|
|
|
+ addCriterion("click_button_text between", value1, value2, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonTextNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("click_button_text not between", value1, value2, "clickButtonText");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorIsNull() {
|
|
|
+ addCriterion("click_button_color is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorIsNotNull() {
|
|
|
+ addCriterion("click_button_color is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorEqualTo(String value) {
|
|
|
+ addCriterion("click_button_color =", value, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorNotEqualTo(String value) {
|
|
|
+ addCriterion("click_button_color <>", value, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorGreaterThan(String value) {
|
|
|
+ addCriterion("click_button_color >", value, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("click_button_color >=", value, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorLessThan(String value) {
|
|
|
+ addCriterion("click_button_color <", value, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("click_button_color <=", value, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorLike(String value) {
|
|
|
+ addCriterion("click_button_color like", value, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorNotLike(String value) {
|
|
|
+ addCriterion("click_button_color not like", value, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorIn(List<String> values) {
|
|
|
+ addCriterion("click_button_color in", values, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorNotIn(List<String> values) {
|
|
|
+ addCriterion("click_button_color not in", values, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorBetween(String value1, String value2) {
|
|
|
+ addCriterion("click_button_color between", value1, value2, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonColorNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("click_button_color not between", value1, value2, "clickButtonColor");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsIsNull() {
|
|
|
+ addCriterion("click_button_effects is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsIsNotNull() {
|
|
|
+ addCriterion("click_button_effects is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsEqualTo(Integer value) {
|
|
|
+ addCriterion("click_button_effects =", value, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsNotEqualTo(Integer value) {
|
|
|
+ addCriterion("click_button_effects <>", value, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsGreaterThan(Integer value) {
|
|
|
+ addCriterion("click_button_effects >", value, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("click_button_effects >=", value, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsLessThan(Integer value) {
|
|
|
+ addCriterion("click_button_effects <", value, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("click_button_effects <=", value, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsIn(List<Integer> values) {
|
|
|
+ addCriterion("click_button_effects in", values, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsNotIn(List<Integer> values) {
|
|
|
+ addCriterion("click_button_effects not in", values, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("click_button_effects between", value1, value2, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andClickButtonEffectsNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("click_button_effects not between", value1, value2, "clickButtonEffects");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeIsNull() {
|
|
|
+ addCriterion("landing_page_type is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeIsNotNull() {
|
|
|
+ addCriterion("landing_page_type is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeEqualTo(Integer value) {
|
|
|
+ addCriterion("landing_page_type =", value, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("landing_page_type <>", value, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("landing_page_type >", value, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("landing_page_type >=", value, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeLessThan(Integer value) {
|
|
|
+ addCriterion("landing_page_type <", value, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("landing_page_type <=", value, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeIn(List<Integer> values) {
|
|
|
+ addCriterion("landing_page_type in", values, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("landing_page_type not in", values, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("landing_page_type between", value1, value2, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageTypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("landing_page_type not between", value1, value2, "landingPageType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidIsNull() {
|
|
|
+ addCriterion("landing_page_appId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidIsNotNull() {
|
|
|
+ addCriterion("landing_page_appId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidEqualTo(String value) {
|
|
|
+ addCriterion("landing_page_appId =", value, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidNotEqualTo(String value) {
|
|
|
+ addCriterion("landing_page_appId <>", value, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidGreaterThan(String value) {
|
|
|
+ addCriterion("landing_page_appId >", value, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("landing_page_appId >=", value, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidLessThan(String value) {
|
|
|
+ addCriterion("landing_page_appId <", value, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("landing_page_appId <=", value, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidLike(String value) {
|
|
|
+ addCriterion("landing_page_appId like", value, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidNotLike(String value) {
|
|
|
+ addCriterion("landing_page_appId not like", value, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidIn(List<String> values) {
|
|
|
+ addCriterion("landing_page_appId in", values, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidNotIn(List<String> values) {
|
|
|
+ addCriterion("landing_page_appId not in", values, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidBetween(String value1, String value2) {
|
|
|
+ addCriterion("landing_page_appId between", value1, value2, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAppidNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("landing_page_appId not between", value1, value2, "landingPageAppid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressIsNull() {
|
|
|
+ addCriterion("landing_page_address is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressIsNotNull() {
|
|
|
+ addCriterion("landing_page_address is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressEqualTo(String value) {
|
|
|
+ addCriterion("landing_page_address =", value, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressNotEqualTo(String value) {
|
|
|
+ addCriterion("landing_page_address <>", value, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressGreaterThan(String value) {
|
|
|
+ addCriterion("landing_page_address >", value, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("landing_page_address >=", value, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressLessThan(String value) {
|
|
|
+ addCriterion("landing_page_address <", value, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("landing_page_address <=", value, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressLike(String value) {
|
|
|
+ addCriterion("landing_page_address like", value, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressNotLike(String value) {
|
|
|
+ addCriterion("landing_page_address not like", value, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressIn(List<String> values) {
|
|
|
+ addCriterion("landing_page_address in", values, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressNotIn(List<String> values) {
|
|
|
+ addCriterion("landing_page_address not in", values, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressBetween(String value1, String value2) {
|
|
|
+ addCriterion("landing_page_address between", value1, value2, "landingPageAddress");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLandingPageAddressNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("landing_page_address not between", value1, value2, "landingPageAddress");
|
|
|
+ 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(String value) {
|
|
|
+ addCriterion("`status` =", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusNotEqualTo(String value) {
|
|
|
+ addCriterion("`status` <>", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusGreaterThan(String value) {
|
|
|
+ addCriterion("`status` >", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("`status` >=", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusLessThan(String value) {
|
|
|
+ addCriterion("`status` <", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("`status` <=", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusLike(String value) {
|
|
|
+ addCriterion("`status` like", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusNotLike(String value) {
|
|
|
+ addCriterion("`status` not like", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusIn(List<String> values) {
|
|
|
+ addCriterion("`status` in", values, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusNotIn(List<String> values) {
|
|
|
+ addCriterion("`status` not in", values, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusBetween(String value1, String value2) {
|
|
|
+ addCriterion("`status` between", value1, value2, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("`status` not between", value1, value2, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonIsNull() {
|
|
|
+ addCriterion("check_reason is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonIsNotNull() {
|
|
|
+ addCriterion("check_reason is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonEqualTo(String value) {
|
|
|
+ addCriterion("check_reason =", value, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonNotEqualTo(String value) {
|
|
|
+ addCriterion("check_reason <>", value, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonGreaterThan(String value) {
|
|
|
+ addCriterion("check_reason >", value, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("check_reason >=", value, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonLessThan(String value) {
|
|
|
+ addCriterion("check_reason <", value, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("check_reason <=", value, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonLike(String value) {
|
|
|
+ addCriterion("check_reason like", value, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonNotLike(String value) {
|
|
|
+ addCriterion("check_reason not like", value, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonIn(List<String> values) {
|
|
|
+ addCriterion("check_reason in", values, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonNotIn(List<String> values) {
|
|
|
+ addCriterion("check_reason not in", values, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonBetween(String value1, String value2) {
|
|
|
+ addCriterion("check_reason between", value1, value2, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCheckReasonNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("check_reason not between", value1, value2, "checkReason");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightIsNull() {
|
|
|
+ addCriterion("weight is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightIsNotNull() {
|
|
|
+ addCriterion("weight is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightEqualTo(Integer value) {
|
|
|
+ addCriterion("weight =", value, "weight");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightNotEqualTo(Integer value) {
|
|
|
+ addCriterion("weight <>", value, "weight");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightGreaterThan(Integer value) {
|
|
|
+ addCriterion("weight >", value, "weight");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("weight >=", value, "weight");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightLessThan(Integer value) {
|
|
|
+ addCriterion("weight <", value, "weight");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("weight <=", value, "weight");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightIn(List<Integer> values) {
|
|
|
+ addCriterion("weight in", values, "weight");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightNotIn(List<Integer> values) {
|
|
|
+ addCriterion("weight not in", values, "weight");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("weight between", value1, value2, "weight");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWeightNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("weight not between", value1, value2, "weight");
|
|
|
+ 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 andCreateUserIsNull() {
|
|
|
+ addCriterion("create_user is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserIsNotNull() {
|
|
|
+ addCriterion("create_user is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserEqualTo(String value) {
|
|
|
+ addCriterion("create_user =", value, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserNotEqualTo(String value) {
|
|
|
+ addCriterion("create_user <>", value, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserGreaterThan(String value) {
|
|
|
+ addCriterion("create_user >", value, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("create_user >=", value, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserLessThan(String value) {
|
|
|
+ addCriterion("create_user <", value, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("create_user <=", value, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserLike(String value) {
|
|
|
+ addCriterion("create_user like", value, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserNotLike(String value) {
|
|
|
+ addCriterion("create_user not like", value, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserIn(List<String> values) {
|
|
|
+ addCriterion("create_user in", values, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserNotIn(List<String> values) {
|
|
|
+ addCriterion("create_user not in", values, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserBetween(String value1, String value2) {
|
|
|
+ addCriterion("create_user between", value1, value2, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateUserNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("create_user not between", value1, value2, "createUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserIsNull() {
|
|
|
+ addCriterion("update_user is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserIsNotNull() {
|
|
|
+ addCriterion("update_user is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserEqualTo(String value) {
|
|
|
+ addCriterion("update_user =", value, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserNotEqualTo(String value) {
|
|
|
+ addCriterion("update_user <>", value, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserGreaterThan(String value) {
|
|
|
+ addCriterion("update_user >", value, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("update_user >=", value, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserLessThan(String value) {
|
|
|
+ addCriterion("update_user <", value, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("update_user <=", value, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserLike(String value) {
|
|
|
+ addCriterion("update_user like", value, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserNotLike(String value) {
|
|
|
+ addCriterion("update_user not like", value, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserIn(List<String> values) {
|
|
|
+ addCriterion("update_user in", values, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserNotIn(List<String> values) {
|
|
|
+ addCriterion("update_user not in", values, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserBetween(String value1, String value2) {
|
|
|
+ addCriterion("update_user between", value1, value2, "updateUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateUserNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("update_user not between", value1, value2, "updateUser");
|
|
|
+ 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 Criteria andCreativeNameIsNull() {
|
|
|
+ addCriterion("creative_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameIsNotNull() {
|
|
|
+ addCriterion("creative_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameEqualTo(String value) {
|
|
|
+ addCriterion("creative_name =", value, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameNotEqualTo(String value) {
|
|
|
+ addCriterion("creative_name <>", value, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameGreaterThan(String value) {
|
|
|
+ addCriterion("creative_name >", value, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("creative_name >=", value, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameLessThan(String value) {
|
|
|
+ addCriterion("creative_name <", value, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("creative_name <=", value, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameLike(String value) {
|
|
|
+ addCriterion("creative_name like", value, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameNotLike(String value) {
|
|
|
+ addCriterion("creative_name not like", value, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameIn(List<String> values) {
|
|
|
+ addCriterion("creative_name in", values, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameNotIn(List<String> values) {
|
|
|
+ addCriterion("creative_name not in", values, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("creative_name between", value1, value2, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreativeNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("creative_name not between", value1, value2, "creativeName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusIsNull() {
|
|
|
+ addCriterion("url_check_status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusIsNotNull() {
|
|
|
+ addCriterion("url_check_status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("url_check_status =", value, "urlCheckStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("url_check_status <>", value, "urlCheckStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("url_check_status >", value, "urlCheckStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("url_check_status >=", value, "urlCheckStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusLessThan(Integer value) {
|
|
|
+ addCriterion("url_check_status <", value, "urlCheckStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("url_check_status <=", value, "urlCheckStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("url_check_status in", values, "urlCheckStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("url_check_status not in", values, "urlCheckStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("url_check_status between", value1, value2, "urlCheckStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUrlCheckStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("url_check_status not between", value1, value2, "urlCheckStatus");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|