|
@@ -175,6 +175,136 @@ public class EsProComConSQLBuilder {
|
|
return (Criteria) this;
|
|
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(String value) {
|
|
|
|
+ addCriterion("pid =", value, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidNotEqualTo(String value) {
|
|
|
|
+ addCriterion("pid <>", value, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidGreaterThan(String value) {
|
|
|
|
+ addCriterion("pid >", value, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidGreaterThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("pid >=", value, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidLessThan(String value) {
|
|
|
|
+ addCriterion("pid <", value, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidLessThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("pid <=", value, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidLike(String value) {
|
|
|
|
+ addCriterion("pid like", value, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidNotLike(String value) {
|
|
|
|
+ addCriterion("pid not like", value, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidIn(List<String> values) {
|
|
|
|
+ addCriterion("pid in", values, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidNotIn(List<String> values) {
|
|
|
|
+ addCriterion("pid not in", values, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("pid between", value1, value2, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPidNotBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("pid not between", value1, value2, "pid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeIsNull() {
|
|
|
|
+ addCriterion("type is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeIsNotNull() {
|
|
|
|
+ addCriterion("type is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeEqualTo(Short value) {
|
|
|
|
+ addCriterion("type =", value, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeNotEqualTo(Short value) {
|
|
|
|
+ addCriterion("type <>", value, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeGreaterThan(Short value) {
|
|
|
|
+ addCriterion("type >", value, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeGreaterThanOrEqualTo(Short value) {
|
|
|
|
+ addCriterion("type >=", value, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeLessThan(Short value) {
|
|
|
|
+ addCriterion("type <", value, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeLessThanOrEqualTo(Short value) {
|
|
|
|
+ addCriterion("type <=", value, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeIn(List<Short> values) {
|
|
|
|
+ addCriterion("type in", values, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeNotIn(List<Short> values) {
|
|
|
|
+ addCriterion("type not in", values, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeBetween(Short value1, Short value2) {
|
|
|
|
+ addCriterion("type between", value1, value2, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andTypeNotBetween(Short value1, Short value2) {
|
|
|
|
+ addCriterion("type not between", value1, value2, "type");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Criteria andNpcIdIsNull() {
|
|
public Criteria andNpcIdIsNull() {
|
|
addCriterion("npc_id is null");
|
|
addCriterion("npc_id is null");
|
|
return (Criteria) this;
|
|
return (Criteria) this;
|
|
@@ -574,66 +704,6 @@ public class EsProComConSQLBuilder {
|
|
addCriterion("update_time not between", value1, value2, "updateTime");
|
|
addCriterion("update_time not between", value1, value2, "updateTime");
|
|
return (Criteria) this;
|
|
return (Criteria) this;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public Criteria andTypeIsNull() {
|
|
|
|
- addCriterion("type is null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeIsNotNull() {
|
|
|
|
- addCriterion("type is not null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeEqualTo(Short value) {
|
|
|
|
- addCriterion("type =", value, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeNotEqualTo(Short value) {
|
|
|
|
- addCriterion("type <>", value, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeGreaterThan(Short value) {
|
|
|
|
- addCriterion("type >", value, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeGreaterThanOrEqualTo(Short value) {
|
|
|
|
- addCriterion("type >=", value, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeLessThan(Short value) {
|
|
|
|
- addCriterion("type <", value, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeLessThanOrEqualTo(Short value) {
|
|
|
|
- addCriterion("type <=", value, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeIn(List<Short> values) {
|
|
|
|
- addCriterion("type in", values, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeNotIn(List<Short> values) {
|
|
|
|
- addCriterion("type not in", values, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeBetween(Short value1, Short value2) {
|
|
|
|
- addCriterion("type between", value1, value2, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andTypeNotBetween(Short value1, Short value2) {
|
|
|
|
- addCriterion("type not between", value1, value2, "type");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|
|
public static class Criteria extends GeneratedCriteria {
|