|
@@ -863,6 +863,66 @@ public class StationInfoExample {
|
|
|
addCriterion("station_latitude not between", value1, value2, "stationLatitude");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
+
|
|
|
+ public Criteria andMnoIsNull() {
|
|
|
+ addCriterion("mno is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoIsNotNull() {
|
|
|
+ addCriterion("mno is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoEqualTo(Integer value) {
|
|
|
+ addCriterion("mno =", value, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoNotEqualTo(Integer value) {
|
|
|
+ addCriterion("mno <>", value, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoGreaterThan(Integer value) {
|
|
|
+ addCriterion("mno >", value, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("mno >=", value, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoLessThan(Integer value) {
|
|
|
+ addCriterion("mno <", value, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("mno <=", value, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoIn(List<Integer> values) {
|
|
|
+ addCriterion("mno in", values, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoNotIn(List<Integer> values) {
|
|
|
+ addCriterion("mno not in", values, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("mno between", value1, value2, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMnoNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("mno not between", value1, value2, "mno");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|