|
@@ -0,0 +1,1162 @@
|
|
|
+package com.tzld.piaoquan.tencentad.model.po;
|
|
|
+
|
|
|
+import com.tzld.piaoquan.tencentad.utils.page.Page;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class AdMuseTaskExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ protected Page page;
|
|
|
+
|
|
|
+ public AdMuseTaskExample() {
|
|
|
+ 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 andAdVideoIdIsNull() {
|
|
|
+ addCriterion("ad_video_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdIsNotNull() {
|
|
|
+ addCriterion("ad_video_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdEqualTo(Long value) {
|
|
|
+ addCriterion("ad_video_id =", value, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("ad_video_id <>", value, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdGreaterThan(Long value) {
|
|
|
+ addCriterion("ad_video_id >", value, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("ad_video_id >=", value, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdLessThan(Long value) {
|
|
|
+ addCriterion("ad_video_id <", value, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("ad_video_id <=", value, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdIn(List<Long> values) {
|
|
|
+ addCriterion("ad_video_id in", values, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("ad_video_id not in", values, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("ad_video_id between", value1, value2, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("ad_video_id not between", value1, value2, "adVideoId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdIsNull() {
|
|
|
+ addCriterion("ad_video_image_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdIsNotNull() {
|
|
|
+ addCriterion("ad_video_image_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdEqualTo(Long value) {
|
|
|
+ addCriterion("ad_video_image_id =", value, "adVideoImageId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("ad_video_image_id <>", value, "adVideoImageId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdGreaterThan(Long value) {
|
|
|
+ addCriterion("ad_video_image_id >", value, "adVideoImageId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("ad_video_image_id >=", value, "adVideoImageId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdLessThan(Long value) {
|
|
|
+ addCriterion("ad_video_image_id <", value, "adVideoImageId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("ad_video_image_id <=", value, "adVideoImageId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdIn(List<Long> values) {
|
|
|
+ addCriterion("ad_video_image_id in", values, "adVideoImageId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("ad_video_image_id not in", values, "adVideoImageId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("ad_video_image_id between", value1, value2, "adVideoImageId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAdVideoImageIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("ad_video_image_id not between", value1, value2, "adVideoImageId");
|
|
|
+ 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 andTaskIdIsNull() {
|
|
|
+ addCriterion("task_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdIsNotNull() {
|
|
|
+ addCriterion("task_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdEqualTo(Long value) {
|
|
|
+ addCriterion("task_id =", value, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("task_id <>", value, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdGreaterThan(Long value) {
|
|
|
+ addCriterion("task_id >", value, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("task_id >=", value, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdLessThan(Long value) {
|
|
|
+ addCriterion("task_id <", value, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("task_id <=", value, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdIn(List<Long> values) {
|
|
|
+ addCriterion("task_id in", values, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("task_id not in", values, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("task_id between", value1, value2, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("task_id not between", value1, value2, "taskId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeIsNull() {
|
|
|
+ addCriterion("task_type is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeIsNotNull() {
|
|
|
+ addCriterion("task_type is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeEqualTo(String value) {
|
|
|
+ addCriterion("task_type =", value, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeNotEqualTo(String value) {
|
|
|
+ addCriterion("task_type <>", value, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeGreaterThan(String value) {
|
|
|
+ addCriterion("task_type >", value, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("task_type >=", value, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeLessThan(String value) {
|
|
|
+ addCriterion("task_type <", value, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("task_type <=", value, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeLike(String value) {
|
|
|
+ addCriterion("task_type like", value, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeNotLike(String value) {
|
|
|
+ addCriterion("task_type not like", value, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeIn(List<String> values) {
|
|
|
+ addCriterion("task_type in", values, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeNotIn(List<String> values) {
|
|
|
+ addCriterion("task_type not in", values, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeBetween(String value1, String value2) {
|
|
|
+ addCriterion("task_type between", value1, value2, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskTypeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("task_type not between", value1, value2, "taskType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusIsNull() {
|
|
|
+ addCriterion("task_status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusIsNotNull() {
|
|
|
+ addCriterion("task_status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusEqualTo(String value) {
|
|
|
+ addCriterion("task_status =", value, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusNotEqualTo(String value) {
|
|
|
+ addCriterion("task_status <>", value, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusGreaterThan(String value) {
|
|
|
+ addCriterion("task_status >", value, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("task_status >=", value, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusLessThan(String value) {
|
|
|
+ addCriterion("task_status <", value, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("task_status <=", value, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusLike(String value) {
|
|
|
+ addCriterion("task_status like", value, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusNotLike(String value) {
|
|
|
+ addCriterion("task_status not like", value, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusIn(List<String> values) {
|
|
|
+ addCriterion("task_status in", values, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusNotIn(List<String> values) {
|
|
|
+ addCriterion("task_status not in", values, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusBetween(String value1, String value2) {
|
|
|
+ addCriterion("task_status between", value1, value2, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTaskStatusNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("task_status not between", value1, value2, "taskStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdIsNull() {
|
|
|
+ addCriterion("muse_material_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdIsNotNull() {
|
|
|
+ addCriterion("muse_material_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdEqualTo(Long value) {
|
|
|
+ addCriterion("muse_material_id =", value, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("muse_material_id <>", value, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdGreaterThan(Long value) {
|
|
|
+ addCriterion("muse_material_id >", value, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("muse_material_id >=", value, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdLessThan(Long value) {
|
|
|
+ addCriterion("muse_material_id <", value, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("muse_material_id <=", value, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdIn(List<Long> values) {
|
|
|
+ addCriterion("muse_material_id in", values, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("muse_material_id not in", values, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("muse_material_id between", value1, value2, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseMaterialIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("muse_material_id not between", value1, value2, "museMaterialId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlIsNull() {
|
|
|
+ addCriterion("muse_url is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlIsNotNull() {
|
|
|
+ addCriterion("muse_url is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlEqualTo(String value) {
|
|
|
+ addCriterion("muse_url =", value, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlNotEqualTo(String value) {
|
|
|
+ addCriterion("muse_url <>", value, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlGreaterThan(String value) {
|
|
|
+ addCriterion("muse_url >", value, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("muse_url >=", value, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlLessThan(String value) {
|
|
|
+ addCriterion("muse_url <", value, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("muse_url <=", value, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlLike(String value) {
|
|
|
+ addCriterion("muse_url like", value, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlNotLike(String value) {
|
|
|
+ addCriterion("muse_url not like", value, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlIn(List<String> values) {
|
|
|
+ addCriterion("muse_url in", values, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlNotIn(List<String> values) {
|
|
|
+ addCriterion("muse_url not in", values, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlBetween(String value1, String value2) {
|
|
|
+ addCriterion("muse_url between", value1, value2, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMuseUrlNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("muse_url not between", value1, value2, "museUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlIsNull() {
|
|
|
+ addCriterion("stitch_url is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlIsNotNull() {
|
|
|
+ addCriterion("stitch_url is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlEqualTo(String value) {
|
|
|
+ addCriterion("stitch_url =", value, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlNotEqualTo(String value) {
|
|
|
+ addCriterion("stitch_url <>", value, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlGreaterThan(String value) {
|
|
|
+ addCriterion("stitch_url >", value, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("stitch_url >=", value, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlLessThan(String value) {
|
|
|
+ addCriterion("stitch_url <", value, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("stitch_url <=", value, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlLike(String value) {
|
|
|
+ addCriterion("stitch_url like", value, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlNotLike(String value) {
|
|
|
+ addCriterion("stitch_url not like", value, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlIn(List<String> values) {
|
|
|
+ addCriterion("stitch_url in", values, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlNotIn(List<String> values) {
|
|
|
+ addCriterion("stitch_url not in", values, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlBetween(String value1, String value2) {
|
|
|
+ addCriterion("stitch_url between", value1, value2, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStitchUrlNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("stitch_url not between", value1, value2, "stitchUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlIsNull() {
|
|
|
+ addCriterion("final_url is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlIsNotNull() {
|
|
|
+ addCriterion("final_url is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlEqualTo(String value) {
|
|
|
+ addCriterion("final_url =", value, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlNotEqualTo(String value) {
|
|
|
+ addCriterion("final_url <>", value, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlGreaterThan(String value) {
|
|
|
+ addCriterion("final_url >", value, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("final_url >=", value, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlLessThan(String value) {
|
|
|
+ addCriterion("final_url <", value, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("final_url <=", value, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlLike(String value) {
|
|
|
+ addCriterion("final_url like", value, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlNotLike(String value) {
|
|
|
+ addCriterion("final_url not like", value, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlIn(List<String> values) {
|
|
|
+ addCriterion("final_url in", values, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlNotIn(List<String> values) {
|
|
|
+ addCriterion("final_url not in", values, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlBetween(String value1, String value2) {
|
|
|
+ addCriterion("final_url between", value1, value2, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andFinalUrlNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("final_url not between", value1, value2, "finalUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdIsNull() {
|
|
|
+ addCriterion("media_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdIsNotNull() {
|
|
|
+ addCriterion("media_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdEqualTo(Long value) {
|
|
|
+ addCriterion("media_id =", value, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("media_id <>", value, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdGreaterThan(Long value) {
|
|
|
+ addCriterion("media_id >", value, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("media_id >=", value, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdLessThan(Long value) {
|
|
|
+ addCriterion("media_id <", value, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("media_id <=", value, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdIn(List<Long> values) {
|
|
|
+ addCriterion("media_id in", values, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("media_id not in", values, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("media_id between", value1, value2, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMediaIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("media_id not between", value1, value2, "mediaId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteIsNull() {
|
|
|
+ addCriterion("is_delete is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteIsNotNull() {
|
|
|
+ addCriterion("is_delete is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteEqualTo(Integer value) {
|
|
|
+ addCriterion("is_delete =", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteNotEqualTo(Integer value) {
|
|
|
+ addCriterion("is_delete <>", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteGreaterThan(Integer value) {
|
|
|
+ addCriterion("is_delete >", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("is_delete >=", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteLessThan(Integer value) {
|
|
|
+ addCriterion("is_delete <", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("is_delete <=", value, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteIn(List<Integer> values) {
|
|
|
+ addCriterion("is_delete in", values, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteNotIn(List<Integer> values) {
|
|
|
+ addCriterion("is_delete not in", values, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("is_delete between", value1, value2, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDeleteNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("is_delete not between", value1, value2, "isDelete");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeIsNull() {
|
|
|
+ addCriterion("create_time is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeIsNotNull() {
|
|
|
+ addCriterion("create_time is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeEqualTo(Date value) {
|
|
|
+ addCriterion("create_time =", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeNotEqualTo(Date value) {
|
|
|
+ addCriterion("create_time <>", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeGreaterThan(Date value) {
|
|
|
+ addCriterion("create_time >", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("create_time >=", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeLessThan(Date value) {
|
|
|
+ addCriterion("create_time <", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("create_time <=", value, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeIn(List<Date> values) {
|
|
|
+ addCriterion("create_time in", values, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeNotIn(List<Date> values) {
|
|
|
+ addCriterion("create_time not in", values, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("create_time between", value1, value2, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("create_time not between", value1, value2, "createTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeIsNull() {
|
|
|
+ addCriterion("update_time is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeIsNotNull() {
|
|
|
+ addCriterion("update_time is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeEqualTo(Date value) {
|
|
|
+ addCriterion("update_time =", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeNotEqualTo(Date value) {
|
|
|
+ addCriterion("update_time <>", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeGreaterThan(Date value) {
|
|
|
+ addCriterion("update_time >", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("update_time >=", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeLessThan(Date value) {
|
|
|
+ addCriterion("update_time <", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("update_time <=", value, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeIn(List<Date> values) {
|
|
|
+ addCriterion("update_time in", values, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeNotIn(List<Date> values) {
|
|
|
+ addCriterion("update_time not in", values, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("update_time between", value1, value2, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("update_time not between", value1, value2, "updateTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class Criteria extends GeneratedCriteria {
|
|
|
+
|
|
|
+ protected Criteria() {
|
|
|
+ super();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class Criterion {
|
|
|
+ private String condition;
|
|
|
+
|
|
|
+ private Object value;
|
|
|
+
|
|
|
+ private Object secondValue;
|
|
|
+
|
|
|
+ private boolean noValue;
|
|
|
+
|
|
|
+ private boolean singleValue;
|
|
|
+
|
|
|
+ private boolean betweenValue;
|
|
|
+
|
|
|
+ private boolean listValue;
|
|
|
+
|
|
|
+ private String typeHandler;
|
|
|
+
|
|
|
+ public String getCondition() {
|
|
|
+ return condition;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Object getValue() {
|
|
|
+ return value;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Object getSecondValue() {
|
|
|
+ return secondValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isNoValue() {
|
|
|
+ return noValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isSingleValue() {
|
|
|
+ return singleValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isBetweenValue() {
|
|
|
+ return betweenValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isListValue() {
|
|
|
+ return listValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTypeHandler() {
|
|
|
+ return typeHandler;
|
|
|
+ }
|
|
|
+
|
|
|
+ protected Criterion(String condition) {
|
|
|
+ super();
|
|
|
+ this.condition = condition;
|
|
|
+ this.typeHandler = null;
|
|
|
+ this.noValue = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ protected Criterion(String condition, Object value, String typeHandler) {
|
|
|
+ super();
|
|
|
+ this.condition = condition;
|
|
|
+ this.value = value;
|
|
|
+ this.typeHandler = typeHandler;
|
|
|
+ if (value instanceof List<?>) {
|
|
|
+ this.listValue = true;
|
|
|
+ } else {
|
|
|
+ this.singleValue = true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ protected Criterion(String condition, Object value) {
|
|
|
+ this(condition, value, null);
|
|
|
+ }
|
|
|
+
|
|
|
+ protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
|
|
|
+ super();
|
|
|
+ this.condition = condition;
|
|
|
+ this.value = value;
|
|
|
+ this.secondValue = secondValue;
|
|
|
+ this.typeHandler = typeHandler;
|
|
|
+ this.betweenValue = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ protected Criterion(String condition, Object value, Object secondValue) {
|
|
|
+ this(condition, value, secondValue, null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|