|
@@ -823,6 +823,136 @@ public class MdoProInoutParaSQLBuilder {
|
|
addCriterion("steamtype not between", value1, value2, "steamtype");
|
|
addCriterion("steamtype not between", value1, value2, "steamtype");
|
|
return (Criteria) this;
|
|
return (Criteria) this;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidIsNull() {
|
|
|
|
+ addCriterion("fcomid is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidIsNotNull() {
|
|
|
|
+ addCriterion("fcomid is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidEqualTo(String value) {
|
|
|
|
+ addCriterion("fcomid =", value, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidNotEqualTo(String value) {
|
|
|
|
+ addCriterion("fcomid <>", value, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidGreaterThan(String value) {
|
|
|
|
+ addCriterion("fcomid >", value, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidGreaterThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("fcomid >=", value, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidLessThan(String value) {
|
|
|
|
+ addCriterion("fcomid <", value, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidLessThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("fcomid <=", value, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidLike(String value) {
|
|
|
|
+ addCriterion("fcomid like", value, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidNotLike(String value) {
|
|
|
|
+ addCriterion("fcomid not like", value, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidIn(List<String> values) {
|
|
|
|
+ addCriterion("fcomid in", values, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidNotIn(List<String> values) {
|
|
|
|
+ addCriterion("fcomid not in", values, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("fcomid between", value1, value2, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomidNotBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("fcomid not between", value1, value2, "fcomid");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeIsNull() {
|
|
|
|
+ addCriterion("fcomtype is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeIsNotNull() {
|
|
|
|
+ addCriterion("fcomtype is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeEqualTo(Integer value) {
|
|
|
|
+ addCriterion("fcomtype =", value, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeNotEqualTo(Integer value) {
|
|
|
|
+ addCriterion("fcomtype <>", value, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeGreaterThan(Integer value) {
|
|
|
|
+ addCriterion("fcomtype >", value, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeGreaterThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("fcomtype >=", value, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeLessThan(Integer value) {
|
|
|
|
+ addCriterion("fcomtype <", value, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeLessThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("fcomtype <=", value, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeIn(List<Integer> values) {
|
|
|
|
+ addCriterion("fcomtype in", values, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeNotIn(List<Integer> values) {
|
|
|
|
+ addCriterion("fcomtype not in", values, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("fcomtype between", value1, value2, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andFcomtypeNotBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("fcomtype not between", value1, value2, "fcomtype");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|
|
public static class Criteria extends GeneratedCriteria {
|