|
@@ -355,72 +355,72 @@ public class DGasGatherAreaSQLBuilder {
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeIsNull() {
|
|
|
- addCriterion("\"type \" is null");
|
|
|
+ addCriterion("type is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeIsNotNull() {
|
|
|
- addCriterion("\"type \" is not null");
|
|
|
+ addCriterion("type is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeEqualTo(String value) {
|
|
|
- addCriterion("\"type \" =", value, "type");
|
|
|
+ addCriterion("type =", value, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeNotEqualTo(String value) {
|
|
|
- addCriterion("\"type \" <>", value, "type");
|
|
|
+ addCriterion("type <>", value, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeGreaterThan(String value) {
|
|
|
- addCriterion("\"type \" >", value, "type");
|
|
|
+ addCriterion("type >", value, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeGreaterThanOrEqualTo(String value) {
|
|
|
- addCriterion("\"type \" >=", value, "type");
|
|
|
+ addCriterion("type >=", value, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeLessThan(String value) {
|
|
|
- addCriterion("\"type \" <", value, "type");
|
|
|
+ addCriterion("type <", value, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeLessThanOrEqualTo(String value) {
|
|
|
- addCriterion("\"type \" <=", value, "type");
|
|
|
+ addCriterion("type <=", value, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeLike(String value) {
|
|
|
- addCriterion("\"type \" like", value, "type");
|
|
|
+ addCriterion("type like", value, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeNotLike(String value) {
|
|
|
- addCriterion("\"type \" not like", value, "type");
|
|
|
+ addCriterion("type not like", value, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeIn(List<String> values) {
|
|
|
- addCriterion("\"type \" in", values, "type");
|
|
|
+ addCriterion("type in", values, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeNotIn(List<String> values) {
|
|
|
- addCriterion("\"type \" not in", values, "type");
|
|
|
+ addCriterion("type not in", values, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeBetween(String value1, String value2) {
|
|
|
- addCriterion("\"type \" between", value1, value2, "type");
|
|
|
+ addCriterion("type between", value1, value2, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
public Criteria andTypeNotBetween(String value1, String value2) {
|
|
|
- addCriterion("\"type \" not between", value1, value2, "type");
|
|
|
+ addCriterion("type not between", value1, value2, "type");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|