|
@@ -593,6 +593,76 @@ public class AdiModelingSQLBuilder {
|
|
|
addCriterion("grid_file not between", value1, value2, "gridFile");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeIsNull() {
|
|
|
+ addCriterion("grid_file_type is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeIsNotNull() {
|
|
|
+ addCriterion("grid_file_type is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeEqualTo(String value) {
|
|
|
+ addCriterion("grid_file_type =", value, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeNotEqualTo(String value) {
|
|
|
+ addCriterion("grid_file_type <>", value, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeGreaterThan(String value) {
|
|
|
+ addCriterion("grid_file_type >", value, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("grid_file_type >=", value, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeLessThan(String value) {
|
|
|
+ addCriterion("grid_file_type <", value, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("grid_file_type <=", value, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeLike(String value) {
|
|
|
+ addCriterion("grid_file_type like", value, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeNotLike(String value) {
|
|
|
+ addCriterion("grid_file_type not like", value, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeIn(List<String> values) {
|
|
|
+ addCriterion("grid_file_type in", values, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeNotIn(List<String> values) {
|
|
|
+ addCriterion("grid_file_type not in", values, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeBetween(String value1, String value2) {
|
|
|
+ addCriterion("grid_file_type between", value1, value2, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGridFileTypeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("grid_file_type not between", value1, value2, "gridFileType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|