|
@@ -704,6 +704,136 @@ public class MdoModSQLBuilder {
|
|
|
addCriterion("flow not between", value1, value2, "flow");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
+
|
|
|
+ public Criteria andTypeIsNull() {
|
|
|
+ addCriterion("type is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeIsNotNull() {
|
|
|
+ addCriterion("type is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeEqualTo(Integer value) {
|
|
|
+ addCriterion("type =", value, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("type <>", value, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("type >", value, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("type >=", value, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeLessThan(Integer value) {
|
|
|
+ addCriterion("type <", value, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("type <=", value, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeIn(List<Integer> values) {
|
|
|
+ addCriterion("type in", values, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("type not in", values, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("type between", value1, value2, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("type not between", value1, value2, "type");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2IsNull() {
|
|
|
+ addCriterion("image2 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2IsNotNull() {
|
|
|
+ addCriterion("image2 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2EqualTo(String value) {
|
|
|
+ addCriterion("image2 =", value, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2NotEqualTo(String value) {
|
|
|
+ addCriterion("image2 <>", value, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2GreaterThan(String value) {
|
|
|
+ addCriterion("image2 >", value, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("image2 >=", value, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2LessThan(String value) {
|
|
|
+ addCriterion("image2 <", value, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("image2 <=", value, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2Like(String value) {
|
|
|
+ addCriterion("image2 like", value, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2NotLike(String value) {
|
|
|
+ addCriterion("image2 not like", value, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2In(List<String> values) {
|
|
|
+ addCriterion("image2 in", values, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2NotIn(List<String> values) {
|
|
|
+ addCriterion("image2 not in", values, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2Between(String value1, String value2) {
|
|
|
+ addCriterion("image2 between", value1, value2, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andImage2NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("image2 not between", value1, value2, "image2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|