|
@@ -376,123 +376,373 @@ public class AdVideoExample {
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusIsNull() {
|
|
|
- addCriterion("`status` is null");
|
|
|
+ public Criteria andVideoTitleIsNull() {
|
|
|
+ addCriterion("video_title is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusIsNotNull() {
|
|
|
- addCriterion("`status` is not null");
|
|
|
+ public Criteria andVideoTitleIsNotNull() {
|
|
|
+ addCriterion("video_title is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusEqualTo(Integer value) {
|
|
|
- addCriterion("`status` =", value, "status");
|
|
|
+ public Criteria andVideoTitleEqualTo(String value) {
|
|
|
+ addCriterion("video_title =", value, "videoTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusNotEqualTo(Integer value) {
|
|
|
- addCriterion("`status` <>", value, "status");
|
|
|
+ public Criteria andVideoTitleNotEqualTo(String value) {
|
|
|
+ addCriterion("video_title <>", value, "videoTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusGreaterThan(Integer value) {
|
|
|
- addCriterion("`status` >", value, "status");
|
|
|
+ public Criteria andVideoTitleGreaterThan(String value) {
|
|
|
+ addCriterion("video_title >", value, "videoTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("`status` >=", value, "status");
|
|
|
+ public Criteria andVideoTitleGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("video_title >=", value, "videoTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusLessThan(Integer value) {
|
|
|
- addCriterion("`status` <", value, "status");
|
|
|
+ public Criteria andVideoTitleLessThan(String value) {
|
|
|
+ addCriterion("video_title <", value, "videoTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("`status` <=", value, "status");
|
|
|
+ public Criteria andVideoTitleLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("video_title <=", value, "videoTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusIn(List<Integer> values) {
|
|
|
- addCriterion("`status` in", values, "status");
|
|
|
+ public Criteria andVideoTitleLike(String value) {
|
|
|
+ addCriterion("video_title like", value, "videoTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusNotIn(List<Integer> values) {
|
|
|
- addCriterion("`status` not in", values, "status");
|
|
|
+ public Criteria andVideoTitleNotLike(String value) {
|
|
|
+ addCriterion("video_title not like", value, "videoTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("`status` between", value1, value2, "status");
|
|
|
+ public Criteria andVideoTitleIn(List<String> values) {
|
|
|
+ addCriterion("video_title in", values, "videoTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andStatusNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("`status` not between", value1, value2, "status");
|
|
|
+ public Criteria andVideoTitleNotIn(List<String> values) {
|
|
|
+ addCriterion("video_title not in", values, "videoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVideoTitleBetween(String value1, String value2) {
|
|
|
+ addCriterion("video_title between", value1, value2, "videoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVideoTitleNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("video_title not between", value1, value2, "videoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusIsNull() {
|
|
|
+ addCriterion("audit_status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusIsNotNull() {
|
|
|
+ addCriterion("audit_status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("audit_status =", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("audit_status <>", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("audit_status >", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("audit_status >=", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusLessThan(Integer value) {
|
|
|
+ addCriterion("audit_status <", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("audit_status <=", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("audit_status in", values, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("audit_status not in", values, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("audit_status between", value1, value2, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("audit_status not between", value1, value2, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusIsNull() {
|
|
|
+ addCriterion("app_audit_status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusIsNotNull() {
|
|
|
+ addCriterion("app_audit_status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("app_audit_status =", value, "appAuditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("app_audit_status <>", value, "appAuditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("app_audit_status >", value, "appAuditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("app_audit_status >=", value, "appAuditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusLessThan(Integer value) {
|
|
|
+ addCriterion("app_audit_status <", value, "appAuditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("app_audit_status <=", value, "appAuditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("app_audit_status in", values, "appAuditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("app_audit_status not in", values, "appAuditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppAuditStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("app_audit_status between", value1, value2, "appAuditStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountIsNull() {
|
|
|
- addCriterion("retry_count is null");
|
|
|
+ public Criteria andAppAuditStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("app_audit_status not between", value1, value2, "appAuditStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountIsNotNull() {
|
|
|
- addCriterion("retry_count is not null");
|
|
|
+ public Criteria andRecommendStatusIsNull() {
|
|
|
+ addCriterion("recommend_status is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountEqualTo(Integer value) {
|
|
|
- addCriterion("retry_count =", value, "retryCount");
|
|
|
+ public Criteria andRecommendStatusIsNotNull() {
|
|
|
+ addCriterion("recommend_status is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountNotEqualTo(Integer value) {
|
|
|
- addCriterion("retry_count <>", value, "retryCount");
|
|
|
+ public Criteria andRecommendStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("recommend_status =", value, "recommendStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountGreaterThan(Integer value) {
|
|
|
- addCriterion("retry_count >", value, "retryCount");
|
|
|
+ public Criteria andRecommendStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("recommend_status <>", value, "recommendStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("retry_count >=", value, "retryCount");
|
|
|
+ public Criteria andRecommendStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("recommend_status >", value, "recommendStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountLessThan(Integer value) {
|
|
|
- addCriterion("retry_count <", value, "retryCount");
|
|
|
+ public Criteria andRecommendStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("recommend_status >=", value, "recommendStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("retry_count <=", value, "retryCount");
|
|
|
+ public Criteria andRecommendStatusLessThan(Integer value) {
|
|
|
+ addCriterion("recommend_status <", value, "recommendStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountIn(List<Integer> values) {
|
|
|
- addCriterion("retry_count in", values, "retryCount");
|
|
|
+ public Criteria andRecommendStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("recommend_status <=", value, "recommendStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountNotIn(List<Integer> values) {
|
|
|
- addCriterion("retry_count not in", values, "retryCount");
|
|
|
+ public Criteria andRecommendStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("recommend_status in", values, "recommendStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("retry_count between", value1, value2, "retryCount");
|
|
|
+ public Criteria andRecommendStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("recommend_status not in", values, "recommendStatus");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andRetryCountNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("retry_count not between", value1, value2, "retryCount");
|
|
|
+ public Criteria andRecommendStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("recommend_status between", value1, value2, "recommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRecommendStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("recommend_status not between", value1, value2, "recommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusIsNull() {
|
|
|
+ addCriterion("app_recommend_status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusIsNotNull() {
|
|
|
+ addCriterion("app_recommend_status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("app_recommend_status =", value, "appRecommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("app_recommend_status <>", value, "appRecommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("app_recommend_status >", value, "appRecommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("app_recommend_status >=", value, "appRecommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusLessThan(Integer value) {
|
|
|
+ addCriterion("app_recommend_status <", value, "appRecommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("app_recommend_status <=", value, "appRecommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("app_recommend_status in", values, "appRecommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("app_recommend_status not in", values, "appRecommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("app_recommend_status between", value1, value2, "appRecommendStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAppRecommendStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("app_recommend_status not between", value1, value2, "appRecommendStatus");
|
|
|
+ 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;
|
|
|
}
|
|
|
|