|
@@ -733,6 +733,76 @@ public class DPumpSQLBuilder {
|
|
addCriterion("onoff not between", value1, value2, "onoff");
|
|
addCriterion("onoff not between", value1, value2, "onoff");
|
|
return (Criteria) this;
|
|
return (Criteria) this;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeIsNull() {
|
|
|
|
+ addCriterion("code is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeIsNotNull() {
|
|
|
|
+ addCriterion("code is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeEqualTo(String value) {
|
|
|
|
+ addCriterion("code =", value, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeNotEqualTo(String value) {
|
|
|
|
+ addCriterion("code <>", value, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeGreaterThan(String value) {
|
|
|
|
+ addCriterion("code >", value, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeGreaterThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("code >=", value, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeLessThan(String value) {
|
|
|
|
+ addCriterion("code <", value, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeLessThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("code <=", value, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeLike(String value) {
|
|
|
|
+ addCriterion("code like", value, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeNotLike(String value) {
|
|
|
|
+ addCriterion("code not like", value, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeIn(List<String> values) {
|
|
|
|
+ addCriterion("code in", values, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeNotIn(List<String> values) {
|
|
|
|
+ addCriterion("code not in", values, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("code between", value1, value2, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andCodeNotBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("code not between", value1, value2, "code");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|
|
public static class Criteria extends GeneratedCriteria {
|