|
@@ -503,6 +503,206 @@ public class DGasSQLBuilder {
|
|
|
addCriterion("bfname not between", value1, value2, "bfname");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
+
|
|
|
+ public Criteria andPidIsNull() {
|
|
|
+ addCriterion("pid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidIsNotNull() {
|
|
|
+ addCriterion("pid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidEqualTo(Integer value) {
|
|
|
+ addCriterion("pid =", value, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("pid <>", value, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidGreaterThan(Integer value) {
|
|
|
+ addCriterion("pid >", value, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pid >=", value, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidLessThan(Integer value) {
|
|
|
+ addCriterion("pid <", value, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pid <=", value, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidIn(List<Integer> values) {
|
|
|
+ addCriterion("pid in", values, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("pid not in", values, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pid between", value1, value2, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pid not between", value1, value2, "pid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameIsNull() {
|
|
|
+ addCriterion("pname is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameIsNotNull() {
|
|
|
+ addCriterion("pname is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameEqualTo(String value) {
|
|
|
+ addCriterion("pname =", value, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameNotEqualTo(String value) {
|
|
|
+ addCriterion("pname <>", value, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameGreaterThan(String value) {
|
|
|
+ addCriterion("pname >", value, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pname >=", value, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameLessThan(String value) {
|
|
|
+ addCriterion("pname <", value, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pname <=", value, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameLike(String value) {
|
|
|
+ addCriterion("pname like", value, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameNotLike(String value) {
|
|
|
+ addCriterion("pname not like", value, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameIn(List<String> values) {
|
|
|
+ addCriterion("pname in", values, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameNotIn(List<String> values) {
|
|
|
+ addCriterion("pname not in", values, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameBetween(String value1, String value2) {
|
|
|
+ addCriterion("pname between", value1, value2, "pname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPnameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("pname not between", value1, value2, "pname");
|
|
|
+ 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 {
|