|
@@ -1,581 +0,0 @@
|
|
|
-package com.tzld.piaoquan.longarticle.model.po;
|
|
|
-
|
|
|
-import com.tzld.piaoquan.longarticle.utils.page.Page;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
-public class OffVideoExample {
|
|
|
- protected String orderByClause;
|
|
|
-
|
|
|
- protected boolean distinct;
|
|
|
-
|
|
|
- protected List<Criteria> oredCriteria;
|
|
|
-
|
|
|
- protected Page page;
|
|
|
-
|
|
|
- public OffVideoExample() {
|
|
|
- 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 andVideoIdIsNull() {
|
|
|
- addCriterion("video_id is null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdIsNotNull() {
|
|
|
- addCriterion("video_id is not null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdEqualTo(Long value) {
|
|
|
- addCriterion("video_id =", value, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdNotEqualTo(Long value) {
|
|
|
- addCriterion("video_id <>", value, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdGreaterThan(Long value) {
|
|
|
- addCriterion("video_id >", value, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdGreaterThanOrEqualTo(Long value) {
|
|
|
- addCriterion("video_id >=", value, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdLessThan(Long value) {
|
|
|
- addCriterion("video_id <", value, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdLessThanOrEqualTo(Long value) {
|
|
|
- addCriterion("video_id <=", value, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdIn(List<Long> values) {
|
|
|
- addCriterion("video_id in", values, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdNotIn(List<Long> values) {
|
|
|
- addCriterion("video_id not in", values, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdBetween(Long value1, Long value2) {
|
|
|
- addCriterion("video_id between", value1, value2, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoIdNotBetween(Long value1, Long value2) {
|
|
|
- addCriterion("video_id not between", value1, value2, "videoId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeIsNull() {
|
|
|
- addCriterion("publish_time is null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeIsNotNull() {
|
|
|
- addCriterion("publish_time is not null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeEqualTo(Long value) {
|
|
|
- addCriterion("publish_time =", value, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeNotEqualTo(Long value) {
|
|
|
- addCriterion("publish_time <>", value, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeGreaterThan(Long value) {
|
|
|
- addCriterion("publish_time >", value, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeGreaterThanOrEqualTo(Long value) {
|
|
|
- addCriterion("publish_time >=", value, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeLessThan(Long value) {
|
|
|
- addCriterion("publish_time <", value, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeLessThanOrEqualTo(Long value) {
|
|
|
- addCriterion("publish_time <=", value, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeIn(List<Long> values) {
|
|
|
- addCriterion("publish_time in", values, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeNotIn(List<Long> values) {
|
|
|
- addCriterion("publish_time not in", values, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeBetween(Long value1, Long value2) {
|
|
|
- addCriterion("publish_time between", value1, value2, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andPublishTimeNotBetween(Long value1, Long value2) {
|
|
|
- addCriterion("publish_time not between", value1, value2, "publishTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusIsNull() {
|
|
|
- addCriterion("video_status is null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusIsNotNull() {
|
|
|
- addCriterion("video_status is not null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusEqualTo(Integer value) {
|
|
|
- addCriterion("video_status =", value, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusNotEqualTo(Integer value) {
|
|
|
- addCriterion("video_status <>", value, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusGreaterThan(Integer value) {
|
|
|
- addCriterion("video_status >", value, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("video_status >=", value, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusLessThan(Integer value) {
|
|
|
- addCriterion("video_status <", value, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("video_status <=", value, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusIn(List<Integer> values) {
|
|
|
- addCriterion("video_status in", values, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusNotIn(List<Integer> values) {
|
|
|
- addCriterion("video_status not in", values, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("video_status between", value1, value2, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andVideoStatusNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("video_status not between", value1, value2, "videoStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdIsNull() {
|
|
|
- addCriterion("trace_id is null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdIsNotNull() {
|
|
|
- addCriterion("trace_id is not null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdEqualTo(String value) {
|
|
|
- addCriterion("trace_id =", value, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdNotEqualTo(String value) {
|
|
|
- addCriterion("trace_id <>", value, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdGreaterThan(String value) {
|
|
|
- addCriterion("trace_id >", value, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdGreaterThanOrEqualTo(String value) {
|
|
|
- addCriterion("trace_id >=", value, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdLessThan(String value) {
|
|
|
- addCriterion("trace_id <", value, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdLessThanOrEqualTo(String value) {
|
|
|
- addCriterion("trace_id <=", value, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdLike(String value) {
|
|
|
- addCriterion("trace_id like", value, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdNotLike(String value) {
|
|
|
- addCriterion("trace_id not like", value, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdIn(List<String> values) {
|
|
|
- addCriterion("trace_id in", values, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdNotIn(List<String> values) {
|
|
|
- addCriterion("trace_id not in", values, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdBetween(String value1, String value2) {
|
|
|
- addCriterion("trace_id between", value1, value2, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andTraceIdNotBetween(String value1, String value2) {
|
|
|
- addCriterion("trace_id not between", value1, value2, "traceId");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeIsNull() {
|
|
|
- addCriterion("get_off_time is null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeIsNotNull() {
|
|
|
- addCriterion("get_off_time is not null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeEqualTo(Long value) {
|
|
|
- addCriterion("get_off_time =", value, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeNotEqualTo(Long value) {
|
|
|
- addCriterion("get_off_time <>", value, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeGreaterThan(Long value) {
|
|
|
- addCriterion("get_off_time >", value, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeGreaterThanOrEqualTo(Long value) {
|
|
|
- addCriterion("get_off_time >=", value, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeLessThan(Long value) {
|
|
|
- addCriterion("get_off_time <", value, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeLessThanOrEqualTo(Long value) {
|
|
|
- addCriterion("get_off_time <=", value, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeIn(List<Long> values) {
|
|
|
- addCriterion("get_off_time in", values, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeNotIn(List<Long> values) {
|
|
|
- addCriterion("get_off_time not in", values, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeBetween(Long value1, Long value2) {
|
|
|
- addCriterion("get_off_time between", value1, value2, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andGetOffTimeNotBetween(Long value1, Long value2) {
|
|
|
- addCriterion("get_off_time not between", value1, value2, "getOffTime");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusIsNull() {
|
|
|
- addCriterion("check_status is null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusIsNotNull() {
|
|
|
- addCriterion("check_status is not null");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusEqualTo(Integer value) {
|
|
|
- addCriterion("check_status =", value, "checkStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusNotEqualTo(Integer value) {
|
|
|
- addCriterion("check_status <>", value, "checkStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusGreaterThan(Integer value) {
|
|
|
- addCriterion("check_status >", value, "checkStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("check_status >=", value, "checkStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusLessThan(Integer value) {
|
|
|
- addCriterion("check_status <", value, "checkStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("check_status <=", value, "checkStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusIn(List<Integer> values) {
|
|
|
- addCriterion("check_status in", values, "checkStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusNotIn(List<Integer> values) {
|
|
|
- addCriterion("check_status not in", values, "checkStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("check_status between", value1, value2, "checkStatus");
|
|
|
- return (Criteria) this;
|
|
|
- }
|
|
|
-
|
|
|
- public Criteria andCheckStatusNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("check_status not between", value1, value2, "checkStatus");
|
|
|
- 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);
|
|
|
- }
|
|
|
- }
|
|
|
-}
|