|
@@ -423,6 +423,76 @@ public class DChecknodeSQLBuilder {
|
|
|
addCriterion("chname not between", value1, value2, "chname");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
+
|
|
|
+ public Criteria andChcodeIsNull() {
|
|
|
+ addCriterion("chcode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeIsNotNull() {
|
|
|
+ addCriterion("chcode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeEqualTo(String value) {
|
|
|
+ addCriterion("chcode =", value, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeNotEqualTo(String value) {
|
|
|
+ addCriterion("chcode <>", value, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeGreaterThan(String value) {
|
|
|
+ addCriterion("chcode >", value, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("chcode >=", value, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeLessThan(String value) {
|
|
|
+ addCriterion("chcode <", value, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("chcode <=", value, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeLike(String value) {
|
|
|
+ addCriterion("chcode like", value, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeNotLike(String value) {
|
|
|
+ addCriterion("chcode not like", value, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeIn(List<String> values) {
|
|
|
+ addCriterion("chcode in", values, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeNotIn(List<String> values) {
|
|
|
+ addCriterion("chcode not in", values, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("chcode between", value1, value2, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andChcodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("chcode not between", value1, value2, "chcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|