|
@@ -413,6 +413,76 @@ public class DSourceSQLBuilder {
|
|
|
addCriterion("site not between", value1, value2, "site");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
+
|
|
|
+ public Criteria andPcodeIsNull() {
|
|
|
+ addCriterion("pcode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeIsNotNull() {
|
|
|
+ addCriterion("pcode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeEqualTo(String value) {
|
|
|
+ addCriterion("pcode =", value, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeNotEqualTo(String value) {
|
|
|
+ addCriterion("pcode <>", value, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeGreaterThan(String value) {
|
|
|
+ addCriterion("pcode >", value, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pcode >=", value, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeLessThan(String value) {
|
|
|
+ addCriterion("pcode <", value, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pcode <=", value, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeLike(String value) {
|
|
|
+ addCriterion("pcode like", value, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeNotLike(String value) {
|
|
|
+ addCriterion("pcode not like", value, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeIn(List<String> values) {
|
|
|
+ addCriterion("pcode in", values, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeNotIn(List<String> values) {
|
|
|
+ addCriterion("pcode not in", values, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("pcode between", value1, value2, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPcodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("pcode not between", value1, value2, "pcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|