|
@@ -673,6 +673,66 @@ public class DPumpSQLBuilder {
|
|
|
addCriterion("closehig not between", value1, value2, "closehig");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
+
|
|
|
+ public Criteria andOnoffIsNull() {
|
|
|
+ addCriterion("onoff is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffIsNotNull() {
|
|
|
+ addCriterion("onoff is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffEqualTo(Integer value) {
|
|
|
+ addCriterion("onoff =", value, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffNotEqualTo(Integer value) {
|
|
|
+ addCriterion("onoff <>", value, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffGreaterThan(Integer value) {
|
|
|
+ addCriterion("onoff >", value, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("onoff >=", value, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffLessThan(Integer value) {
|
|
|
+ addCriterion("onoff <", value, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("onoff <=", value, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffIn(List<Integer> values) {
|
|
|
+ addCriterion("onoff in", values, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffNotIn(List<Integer> values) {
|
|
|
+ addCriterion("onoff not in", values, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("onoff between", value1, value2, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOnoffNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("onoff not between", value1, value2, "onoff");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|