|
@@ -365,63 +365,73 @@ public class ContentPlatformGzhPlanVideoExample {
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateIsNull() {
|
|
|
- addCriterion("title_is_update is null");
|
|
|
+ public Criteria andCustomTitleIsNull() {
|
|
|
+ addCriterion("custom_title is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateIsNotNull() {
|
|
|
- addCriterion("title_is_update is not null");
|
|
|
+ public Criteria andCustomTitleIsNotNull() {
|
|
|
+ addCriterion("custom_title is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateEqualTo(Integer value) {
|
|
|
- addCriterion("title_is_update =", value, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleEqualTo(String value) {
|
|
|
+ addCriterion("custom_title =", value, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateNotEqualTo(Integer value) {
|
|
|
- addCriterion("title_is_update <>", value, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleNotEqualTo(String value) {
|
|
|
+ addCriterion("custom_title <>", value, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateGreaterThan(Integer value) {
|
|
|
- addCriterion("title_is_update >", value, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleGreaterThan(String value) {
|
|
|
+ addCriterion("custom_title >", value, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("title_is_update >=", value, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("custom_title >=", value, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateLessThan(Integer value) {
|
|
|
- addCriterion("title_is_update <", value, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleLessThan(String value) {
|
|
|
+ addCriterion("custom_title <", value, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("title_is_update <=", value, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("custom_title <=", value, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateIn(List<Integer> values) {
|
|
|
- addCriterion("title_is_update in", values, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleLike(String value) {
|
|
|
+ addCriterion("custom_title like", value, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateNotIn(List<Integer> values) {
|
|
|
- addCriterion("title_is_update not in", values, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleNotLike(String value) {
|
|
|
+ addCriterion("custom_title not like", value, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("title_is_update between", value1, value2, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleIn(List<String> values) {
|
|
|
+ addCriterion("custom_title in", values, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andTitleIsUpdateNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("title_is_update not between", value1, value2, "titleIsUpdate");
|
|
|
+ public Criteria andCustomTitleNotIn(List<String> values) {
|
|
|
+ addCriterion("custom_title not in", values, "customTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomTitleBetween(String value1, String value2) {
|
|
|
+ addCriterion("custom_title between", value1, value2, "customTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomTitleNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("custom_title not between", value1, value2, "customTitle");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
@@ -495,63 +505,133 @@ public class ContentPlatformGzhPlanVideoExample {
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateIsNull() {
|
|
|
- addCriterion("cover_is_update is null");
|
|
|
+ public Criteria andCustomCoverIsNull() {
|
|
|
+ addCriterion("custom_cover is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverIsNotNull() {
|
|
|
+ addCriterion("custom_cover is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverEqualTo(String value) {
|
|
|
+ addCriterion("custom_cover =", value, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverNotEqualTo(String value) {
|
|
|
+ addCriterion("custom_cover <>", value, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverGreaterThan(String value) {
|
|
|
+ addCriterion("custom_cover >", value, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("custom_cover >=", value, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverLessThan(String value) {
|
|
|
+ addCriterion("custom_cover <", value, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("custom_cover <=", value, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverLike(String value) {
|
|
|
+ addCriterion("custom_cover like", value, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverNotLike(String value) {
|
|
|
+ addCriterion("custom_cover not like", value, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverIn(List<String> values) {
|
|
|
+ addCriterion("custom_cover in", values, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverNotIn(List<String> values) {
|
|
|
+ addCriterion("custom_cover not in", values, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverBetween(String value1, String value2) {
|
|
|
+ addCriterion("custom_cover between", value1, value2, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("custom_cover not between", value1, value2, "customCover");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomCoverTypeIsNull() {
|
|
|
+ addCriterion("custom_cover_type is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateIsNotNull() {
|
|
|
- addCriterion("cover_is_update is not null");
|
|
|
+ public Criteria andCustomCoverTypeIsNotNull() {
|
|
|
+ addCriterion("custom_cover_type is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateEqualTo(Integer value) {
|
|
|
- addCriterion("cover_is_update =", value, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeEqualTo(Integer value) {
|
|
|
+ addCriterion("custom_cover_type =", value, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateNotEqualTo(Integer value) {
|
|
|
- addCriterion("cover_is_update <>", value, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("custom_cover_type <>", value, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateGreaterThan(Integer value) {
|
|
|
- addCriterion("cover_is_update >", value, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("custom_cover_type >", value, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("cover_is_update >=", value, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("custom_cover_type >=", value, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateLessThan(Integer value) {
|
|
|
- addCriterion("cover_is_update <", value, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeLessThan(Integer value) {
|
|
|
+ addCriterion("custom_cover_type <", value, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("cover_is_update <=", value, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("custom_cover_type <=", value, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateIn(List<Integer> values) {
|
|
|
- addCriterion("cover_is_update in", values, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeIn(List<Integer> values) {
|
|
|
+ addCriterion("custom_cover_type in", values, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateNotIn(List<Integer> values) {
|
|
|
- addCriterion("cover_is_update not in", values, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("custom_cover_type not in", values, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("cover_is_update between", value1, value2, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("custom_cover_type between", value1, value2, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCoverIsUpdateNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("cover_is_update not between", value1, value2, "coverIsUpdate");
|
|
|
+ public Criteria andCustomCoverTypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("custom_cover_type not between", value1, value2, "customCoverType");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|