You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1723 lines
55 KiB
1723 lines
55 KiB
package com.hai.entity;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
public class CmsContentExample {
|
|
protected String orderByClause;
|
|
|
|
protected boolean distinct;
|
|
|
|
protected List<Criteria> oredCriteria;
|
|
|
|
private Integer limit;
|
|
|
|
private Long offset;
|
|
|
|
public CmsContentExample() {
|
|
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 setLimit(Integer limit) {
|
|
this.limit = limit;
|
|
}
|
|
|
|
public Integer getLimit() {
|
|
return limit;
|
|
}
|
|
|
|
public void setOffset(Long offset) {
|
|
this.offset = offset;
|
|
}
|
|
|
|
public Long getOffset() {
|
|
return offset;
|
|
}
|
|
|
|
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 andCategoryIdIsNull() {
|
|
addCriterion("category_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdIsNotNull() {
|
|
addCriterion("category_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdEqualTo(Long value) {
|
|
addCriterion("category_id =", value, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdNotEqualTo(Long value) {
|
|
addCriterion("category_id <>", value, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdGreaterThan(Long value) {
|
|
addCriterion("category_id >", value, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("category_id >=", value, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdLessThan(Long value) {
|
|
addCriterion("category_id <", value, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("category_id <=", value, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdIn(List<Long> values) {
|
|
addCriterion("category_id in", values, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdNotIn(List<Long> values) {
|
|
addCriterion("category_id not in", values, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdBetween(Long value1, Long value2) {
|
|
addCriterion("category_id between", value1, value2, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("category_id not between", value1, value2, "categoryId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeIsNull() {
|
|
addCriterion("category_code is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeIsNotNull() {
|
|
addCriterion("category_code is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeEqualTo(String value) {
|
|
addCriterion("category_code =", value, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeNotEqualTo(String value) {
|
|
addCriterion("category_code <>", value, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeGreaterThan(String value) {
|
|
addCriterion("category_code >", value, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeGreaterThanOrEqualTo(String value) {
|
|
addCriterion("category_code >=", value, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeLessThan(String value) {
|
|
addCriterion("category_code <", value, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeLessThanOrEqualTo(String value) {
|
|
addCriterion("category_code <=", value, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeLike(String value) {
|
|
addCriterion("category_code like", value, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeNotLike(String value) {
|
|
addCriterion("category_code not like", value, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeIn(List<String> values) {
|
|
addCriterion("category_code in", values, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeNotIn(List<String> values) {
|
|
addCriterion("category_code not in", values, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeBetween(String value1, String value2) {
|
|
addCriterion("category_code between", value1, value2, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCategoryCodeNotBetween(String value1, String value2) {
|
|
addCriterion("category_code not between", value1, value2, "categoryCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleIsNull() {
|
|
addCriterion("title is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleIsNotNull() {
|
|
addCriterion("title is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleEqualTo(String value) {
|
|
addCriterion("title =", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleNotEqualTo(String value) {
|
|
addCriterion("title <>", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleGreaterThan(String value) {
|
|
addCriterion("title >", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleGreaterThanOrEqualTo(String value) {
|
|
addCriterion("title >=", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleLessThan(String value) {
|
|
addCriterion("title <", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleLessThanOrEqualTo(String value) {
|
|
addCriterion("title <=", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleLike(String value) {
|
|
addCriterion("title like", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleNotLike(String value) {
|
|
addCriterion("title not like", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleIn(List<String> values) {
|
|
addCriterion("title in", values, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleNotIn(List<String> values) {
|
|
addCriterion("title not in", values, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleBetween(String value1, String value2) {
|
|
addCriterion("title between", value1, value2, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleNotBetween(String value1, String value2) {
|
|
addCriterion("title not between", value1, value2, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionIsNull() {
|
|
addCriterion("description is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionIsNotNull() {
|
|
addCriterion("description is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionEqualTo(String value) {
|
|
addCriterion("description =", value, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionNotEqualTo(String value) {
|
|
addCriterion("description <>", value, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionGreaterThan(String value) {
|
|
addCriterion("description >", value, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionGreaterThanOrEqualTo(String value) {
|
|
addCriterion("description >=", value, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionLessThan(String value) {
|
|
addCriterion("description <", value, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionLessThanOrEqualTo(String value) {
|
|
addCriterion("description <=", value, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionLike(String value) {
|
|
addCriterion("description like", value, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionNotLike(String value) {
|
|
addCriterion("description not like", value, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionIn(List<String> values) {
|
|
addCriterion("description in", values, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionNotIn(List<String> values) {
|
|
addCriterion("description not in", values, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionBetween(String value1, String value2) {
|
|
addCriterion("description between", value1, value2, "description");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDescriptionNotBetween(String value1, String value2) {
|
|
addCriterion("description not between", value1, value2, "description");
|
|
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 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 andHasPatchIsNull() {
|
|
addCriterion("has_patch is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchIsNotNull() {
|
|
addCriterion("has_patch is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchEqualTo(Integer value) {
|
|
addCriterion("has_patch =", value, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchNotEqualTo(Integer value) {
|
|
addCriterion("has_patch <>", value, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchGreaterThan(Integer value) {
|
|
addCriterion("has_patch >", value, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("has_patch >=", value, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchLessThan(Integer value) {
|
|
addCriterion("has_patch <", value, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchLessThanOrEqualTo(Integer value) {
|
|
addCriterion("has_patch <=", value, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchIn(List<Integer> values) {
|
|
addCriterion("has_patch in", values, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchNotIn(List<Integer> values) {
|
|
addCriterion("has_patch not in", values, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchBetween(Integer value1, Integer value2) {
|
|
addCriterion("has_patch between", value1, value2, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHasPatchNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("has_patch not between", value1, value2, "hasPatch");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountIsNull() {
|
|
addCriterion("visit_count is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountIsNotNull() {
|
|
addCriterion("visit_count is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountEqualTo(Integer value) {
|
|
addCriterion("visit_count =", value, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountNotEqualTo(Integer value) {
|
|
addCriterion("visit_count <>", value, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountGreaterThan(Integer value) {
|
|
addCriterion("visit_count >", value, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("visit_count >=", value, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountLessThan(Integer value) {
|
|
addCriterion("visit_count <", value, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountLessThanOrEqualTo(Integer value) {
|
|
addCriterion("visit_count <=", value, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountIn(List<Integer> values) {
|
|
addCriterion("visit_count in", values, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountNotIn(List<Integer> values) {
|
|
addCriterion("visit_count not in", values, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountBetween(Integer value1, Integer value2) {
|
|
addCriterion("visit_count between", value1, value2, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andVisitCountNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("visit_count not between", value1, value2, "visitCount");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagIsNull() {
|
|
addCriterion("tag is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagIsNotNull() {
|
|
addCriterion("tag is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagEqualTo(String value) {
|
|
addCriterion("tag =", value, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagNotEqualTo(String value) {
|
|
addCriterion("tag <>", value, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagGreaterThan(String value) {
|
|
addCriterion("tag >", value, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagGreaterThanOrEqualTo(String value) {
|
|
addCriterion("tag >=", value, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagLessThan(String value) {
|
|
addCriterion("tag <", value, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagLessThanOrEqualTo(String value) {
|
|
addCriterion("tag <=", value, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagLike(String value) {
|
|
addCriterion("tag like", value, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagNotLike(String value) {
|
|
addCriterion("tag not like", value, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagIn(List<String> values) {
|
|
addCriterion("tag in", values, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagNotIn(List<String> values) {
|
|
addCriterion("tag not in", values, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagBetween(String value1, String value2) {
|
|
addCriterion("tag between", value1, value2, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTagNotBetween(String value1, String value2) {
|
|
addCriterion("tag not between", value1, value2, "tag");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataIsNull() {
|
|
addCriterion("img_data is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataIsNotNull() {
|
|
addCriterion("img_data is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataEqualTo(String value) {
|
|
addCriterion("img_data =", value, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataNotEqualTo(String value) {
|
|
addCriterion("img_data <>", value, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataGreaterThan(String value) {
|
|
addCriterion("img_data >", value, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataGreaterThanOrEqualTo(String value) {
|
|
addCriterion("img_data >=", value, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataLessThan(String value) {
|
|
addCriterion("img_data <", value, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataLessThanOrEqualTo(String value) {
|
|
addCriterion("img_data <=", value, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataLike(String value) {
|
|
addCriterion("img_data like", value, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataNotLike(String value) {
|
|
addCriterion("img_data not like", value, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataIn(List<String> values) {
|
|
addCriterion("img_data in", values, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataNotIn(List<String> values) {
|
|
addCriterion("img_data not in", values, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataBetween(String value1, String value2) {
|
|
addCriterion("img_data between", value1, value2, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImgDataNotBetween(String value1, String value2) {
|
|
addCriterion("img_data not between", value1, value2, "imgData");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameIsNull() {
|
|
addCriterion("jump_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameIsNotNull() {
|
|
addCriterion("jump_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameEqualTo(String value) {
|
|
addCriterion("jump_name =", value, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameNotEqualTo(String value) {
|
|
addCriterion("jump_name <>", value, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameGreaterThan(String value) {
|
|
addCriterion("jump_name >", value, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("jump_name >=", value, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameLessThan(String value) {
|
|
addCriterion("jump_name <", value, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameLessThanOrEqualTo(String value) {
|
|
addCriterion("jump_name <=", value, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameLike(String value) {
|
|
addCriterion("jump_name like", value, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameNotLike(String value) {
|
|
addCriterion("jump_name not like", value, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameIn(List<String> values) {
|
|
addCriterion("jump_name in", values, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameNotIn(List<String> values) {
|
|
addCriterion("jump_name not in", values, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameBetween(String value1, String value2) {
|
|
addCriterion("jump_name between", value1, value2, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpNameNotBetween(String value1, String value2) {
|
|
addCriterion("jump_name not between", value1, value2, "jumpName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlIsNull() {
|
|
addCriterion("jump_url is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlIsNotNull() {
|
|
addCriterion("jump_url is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlEqualTo(String value) {
|
|
addCriterion("jump_url =", value, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlNotEqualTo(String value) {
|
|
addCriterion("jump_url <>", value, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlGreaterThan(String value) {
|
|
addCriterion("jump_url >", value, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlGreaterThanOrEqualTo(String value) {
|
|
addCriterion("jump_url >=", value, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlLessThan(String value) {
|
|
addCriterion("jump_url <", value, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlLessThanOrEqualTo(String value) {
|
|
addCriterion("jump_url <=", value, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlLike(String value) {
|
|
addCriterion("jump_url like", value, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlNotLike(String value) {
|
|
addCriterion("jump_url not like", value, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlIn(List<String> values) {
|
|
addCriterion("jump_url in", values, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlNotIn(List<String> values) {
|
|
addCriterion("jump_url not in", values, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlBetween(String value1, String value2) {
|
|
addCriterion("jump_url between", value1, value2, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andJumpUrlNotBetween(String value1, String value2) {
|
|
addCriterion("jump_url not between", value1, value2, "jumpUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdIsNull() {
|
|
addCriterion("sort_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdIsNotNull() {
|
|
addCriterion("sort_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdEqualTo(Integer value) {
|
|
addCriterion("sort_id =", value, "sortId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdNotEqualTo(Integer value) {
|
|
addCriterion("sort_id <>", value, "sortId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdGreaterThan(Integer value) {
|
|
addCriterion("sort_id >", value, "sortId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("sort_id >=", value, "sortId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdLessThan(Integer value) {
|
|
addCriterion("sort_id <", value, "sortId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("sort_id <=", value, "sortId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdIn(List<Integer> values) {
|
|
addCriterion("sort_id in", values, "sortId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdNotIn(List<Integer> values) {
|
|
addCriterion("sort_id not in", values, "sortId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("sort_id between", value1, value2, "sortId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSortIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("sort_id not between", value1, value2, "sortId");
|
|
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 andRecommendIsNull() {
|
|
addCriterion("recommend is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendIsNotNull() {
|
|
addCriterion("recommend is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendEqualTo(Boolean value) {
|
|
addCriterion("recommend =", value, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendNotEqualTo(Boolean value) {
|
|
addCriterion("recommend <>", value, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendGreaterThan(Boolean value) {
|
|
addCriterion("recommend >", value, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendGreaterThanOrEqualTo(Boolean value) {
|
|
addCriterion("recommend >=", value, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendLessThan(Boolean value) {
|
|
addCriterion("recommend <", value, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendLessThanOrEqualTo(Boolean value) {
|
|
addCriterion("recommend <=", value, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendIn(List<Boolean> values) {
|
|
addCriterion("recommend in", values, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendNotIn(List<Boolean> values) {
|
|
addCriterion("recommend not in", values, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendBetween(Boolean value1, Boolean value2) {
|
|
addCriterion("recommend between", value1, value2, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRecommendNotBetween(Boolean value1, Boolean value2) {
|
|
addCriterion("recommend not between", value1, value2, "recommend");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIsNull() {
|
|
addCriterion("company_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIsNotNull() {
|
|
addCriterion("company_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdEqualTo(Long value) {
|
|
addCriterion("company_id =", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotEqualTo(Long value) {
|
|
addCriterion("company_id <>", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdGreaterThan(Long value) {
|
|
addCriterion("company_id >", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("company_id >=", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdLessThan(Long value) {
|
|
addCriterion("company_id <", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("company_id <=", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIn(List<Long> values) {
|
|
addCriterion("company_id in", values, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotIn(List<Long> values) {
|
|
addCriterion("company_id not in", values, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdBetween(Long value1, Long value2) {
|
|
addCriterion("company_id between", value1, value2, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("company_id not between", value1, value2, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameIsNull() {
|
|
addCriterion("company_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameIsNotNull() {
|
|
addCriterion("company_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameEqualTo(String value) {
|
|
addCriterion("company_name =", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameNotEqualTo(String value) {
|
|
addCriterion("company_name <>", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameGreaterThan(String value) {
|
|
addCriterion("company_name >", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("company_name >=", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameLessThan(String value) {
|
|
addCriterion("company_name <", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameLessThanOrEqualTo(String value) {
|
|
addCriterion("company_name <=", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameLike(String value) {
|
|
addCriterion("company_name like", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameNotLike(String value) {
|
|
addCriterion("company_name not like", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameIn(List<String> values) {
|
|
addCriterion("company_name in", values, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameNotIn(List<String> values) {
|
|
addCriterion("company_name not in", values, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameBetween(String value1, String value2) {
|
|
addCriterion("company_name between", value1, value2, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameNotBetween(String value1, String value2) {
|
|
addCriterion("company_name not between", value1, value2, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameIsNull() {
|
|
addCriterion("user_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameIsNotNull() {
|
|
addCriterion("user_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameEqualTo(String value) {
|
|
addCriterion("user_name =", value, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameNotEqualTo(String value) {
|
|
addCriterion("user_name <>", value, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameGreaterThan(String value) {
|
|
addCriterion("user_name >", value, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("user_name >=", value, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameLessThan(String value) {
|
|
addCriterion("user_name <", value, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameLessThanOrEqualTo(String value) {
|
|
addCriterion("user_name <=", value, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameLike(String value) {
|
|
addCriterion("user_name like", value, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameNotLike(String value) {
|
|
addCriterion("user_name not like", value, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameIn(List<String> values) {
|
|
addCriterion("user_name in", values, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameNotIn(List<String> values) {
|
|
addCriterion("user_name not in", values, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameBetween(String value1, String value2) {
|
|
addCriterion("user_name between", value1, value2, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUserNameNotBetween(String value1, String value2) {
|
|
addCriterion("user_name not between", value1, value2, "userName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdIsNull() {
|
|
addCriterion("op_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdIsNotNull() {
|
|
addCriterion("op_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdEqualTo(Long value) {
|
|
addCriterion("op_id =", value, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdNotEqualTo(Long value) {
|
|
addCriterion("op_id <>", value, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdGreaterThan(Long value) {
|
|
addCriterion("op_id >", value, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("op_id >=", value, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdLessThan(Long value) {
|
|
addCriterion("op_id <", value, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("op_id <=", value, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdIn(List<Long> values) {
|
|
addCriterion("op_id in", values, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdNotIn(List<Long> values) {
|
|
addCriterion("op_id not in", values, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdBetween(Long value1, Long value2) {
|
|
addCriterion("op_id between", value1, value2, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOpIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("op_id not between", value1, value2, "opId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1IsNull() {
|
|
addCriterion("ext_1 is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1IsNotNull() {
|
|
addCriterion("ext_1 is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1EqualTo(String value) {
|
|
addCriterion("ext_1 =", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1NotEqualTo(String value) {
|
|
addCriterion("ext_1 <>", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1GreaterThan(String value) {
|
|
addCriterion("ext_1 >", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1GreaterThanOrEqualTo(String value) {
|
|
addCriterion("ext_1 >=", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1LessThan(String value) {
|
|
addCriterion("ext_1 <", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1LessThanOrEqualTo(String value) {
|
|
addCriterion("ext_1 <=", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1Like(String value) {
|
|
addCriterion("ext_1 like", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1NotLike(String value) {
|
|
addCriterion("ext_1 not like", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1In(List<String> values) {
|
|
addCriterion("ext_1 in", values, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1NotIn(List<String> values) {
|
|
addCriterion("ext_1 not in", values, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1Between(String value1, String value2) {
|
|
addCriterion("ext_1 between", value1, value2, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1NotBetween(String value1, String value2) {
|
|
addCriterion("ext_1 not between", value1, value2, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2IsNull() {
|
|
addCriterion("ext_2 is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2IsNotNull() {
|
|
addCriterion("ext_2 is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2EqualTo(String value) {
|
|
addCriterion("ext_2 =", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2NotEqualTo(String value) {
|
|
addCriterion("ext_2 <>", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2GreaterThan(String value) {
|
|
addCriterion("ext_2 >", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2GreaterThanOrEqualTo(String value) {
|
|
addCriterion("ext_2 >=", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2LessThan(String value) {
|
|
addCriterion("ext_2 <", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2LessThanOrEqualTo(String value) {
|
|
addCriterion("ext_2 <=", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2Like(String value) {
|
|
addCriterion("ext_2 like", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2NotLike(String value) {
|
|
addCriterion("ext_2 not like", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2In(List<String> values) {
|
|
addCriterion("ext_2 in", values, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2NotIn(List<String> values) {
|
|
addCriterion("ext_2 not in", values, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2Between(String value1, String value2) {
|
|
addCriterion("ext_2 between", value1, value2, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2NotBetween(String value1, String value2) {
|
|
addCriterion("ext_2 not between", value1, value2, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3IsNull() {
|
|
addCriterion("ext_3 is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3IsNotNull() {
|
|
addCriterion("ext_3 is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3EqualTo(String value) {
|
|
addCriterion("ext_3 =", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3NotEqualTo(String value) {
|
|
addCriterion("ext_3 <>", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3GreaterThan(String value) {
|
|
addCriterion("ext_3 >", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3GreaterThanOrEqualTo(String value) {
|
|
addCriterion("ext_3 >=", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3LessThan(String value) {
|
|
addCriterion("ext_3 <", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3LessThanOrEqualTo(String value) {
|
|
addCriterion("ext_3 <=", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3Like(String value) {
|
|
addCriterion("ext_3 like", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3NotLike(String value) {
|
|
addCriterion("ext_3 not like", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3In(List<String> values) {
|
|
addCriterion("ext_3 in", values, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3NotIn(List<String> values) {
|
|
addCriterion("ext_3 not in", values, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3Between(String value1, String value2) {
|
|
addCriterion("ext_3 between", value1, value2, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3NotBetween(String value1, String value2) {
|
|
addCriterion("ext_3 not between", value1, value2, "ext3");
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|