|  | @@ -0,0 +1,970 @@
 | 
	
		
			
				|  |  | +package com.miniframe.model.system;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +import java.util.ArrayList;
 | 
	
		
			
				|  |  | +import java.util.List;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +public class AdiModelingSQLBuilder {
 | 
	
		
			
				|  |  | +    protected String orderByClause;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    protected boolean distinct;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    protected List<Criteria> oredCriteria;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public AdiModelingSQLBuilder() {
 | 
	
		
			
				|  |  | +        oredCriteria = new ArrayList<Criteria>();
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setOrderByClause(String orderByClause) {
 | 
	
		
			
				|  |  | +        this.orderByClause = orderByClause;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public String getOrderByClause() {
 | 
	
		
			
				|  |  | +        return orderByClause;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setDistinct(boolean distinct) {
 | 
	
		
			
				|  |  | +        this.distinct = distinct;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public boolean isDistinct() {
 | 
	
		
			
				|  |  | +        return distinct;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public List<Criteria> getOredCriteria() {
 | 
	
		
			
				|  |  | +        return oredCriteria;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void or(Criteria criteria) {
 | 
	
		
			
				|  |  | +        oredCriteria.add(criteria);
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public Criteria or() {
 | 
	
		
			
				|  |  | +        Criteria criteria = createCriteriaInternal();
 | 
	
		
			
				|  |  | +        oredCriteria.add(criteria);
 | 
	
		
			
				|  |  | +        return criteria;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public Criteria createCriteria() {
 | 
	
		
			
				|  |  | +        Criteria criteria = createCriteriaInternal();
 | 
	
		
			
				|  |  | +        if (oredCriteria.size() == 0) {
 | 
	
		
			
				|  |  | +            oredCriteria.add(criteria);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        return criteria;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    protected Criteria createCriteriaInternal() {
 | 
	
		
			
				|  |  | +        Criteria criteria = new Criteria();
 | 
	
		
			
				|  |  | +        return criteria;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void clear() {
 | 
	
		
			
				|  |  | +        oredCriteria.clear();
 | 
	
		
			
				|  |  | +        orderByClause = null;
 | 
	
		
			
				|  |  | +        distinct = false;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    protected abstract static class GeneratedCriteria {
 | 
	
		
			
				|  |  | +        protected List<Criterion> criteria;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected GeneratedCriteria() {
 | 
	
		
			
				|  |  | +            super();
 | 
	
		
			
				|  |  | +            criteria = new ArrayList<Criterion>();
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public boolean isValid() {
 | 
	
		
			
				|  |  | +            return criteria.size() > 0;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public List<Criterion> getAllCriteria() {
 | 
	
		
			
				|  |  | +            return criteria;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public List<Criterion> getCriteria() {
 | 
	
		
			
				|  |  | +            return criteria;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected void addCriterion(String condition) {
 | 
	
		
			
				|  |  | +            if (condition == null) {
 | 
	
		
			
				|  |  | +                throw new RuntimeException("Value for condition cannot be null");
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +            criteria.add(new Criterion(condition));
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected void addCriterion(String condition, Object value, String property) {
 | 
	
		
			
				|  |  | +            if (value == null) {
 | 
	
		
			
				|  |  | +                throw new RuntimeException("Value for " + property + " cannot be null");
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +            criteria.add(new Criterion(condition, value));
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected void addCriterion(String condition, Object value1, Object value2, String property) {
 | 
	
		
			
				|  |  | +            if (value1 == null || value2 == null) {
 | 
	
		
			
				|  |  | +                throw new RuntimeException("Between values for " + property + " cannot be null");
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +            criteria.add(new Criterion(condition, value1, value2));
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("id is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("id is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("id =", value, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("id <>", value, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("id >", value, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("id >=", value, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("id <", value, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("id <=", value, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("id like", value, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("id not like", value, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("id in", values, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("id not in", values, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("id between", value1, value2, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andIdNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("id not between", value1, value2, "id");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("uid is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("uid is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("uid =", value, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("uid <>", value, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("uid >", value, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("uid >=", value, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("uid <", value, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("uid <=", value, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("uid like", value, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("uid not like", value, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("uid in", values, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("uid not in", values, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("uid between", value1, value2, "uid");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andUidNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("uid not between", value1, value2, "uid");
 | 
	
		
			
				|  |  | +            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 andGeometrySourceFileIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file =", value, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file <>", value, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file >", value, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file >=", value, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file <", value, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file <=", value, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file like", value, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file not like", value, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file in", values, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file not in", values, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file between", value1, value2, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFileNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_file not between", value1, value2, "geometrySourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file =", value, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file <>", value, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file >", value, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file >=", value, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file <", value, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file <=", value, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file like", value, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file not like", value, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file in", values, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file not in", values, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file between", value1, value2, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFileNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_file not between", value1, value2, "geometryFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file =", value, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file <>", value, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file >", value, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file >=", value, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file <", value, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file <=", value, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file like", value, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file not like", value, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file in", values, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file not in", values, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file between", value1, value2, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFileNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_file not between", value1, value2, "gridsSourceFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file =", value, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file <>", value, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file >", value, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file >=", value, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file <", value, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file <=", value, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file like", value, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file not like", value, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file in", values, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file not in", values, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file between", value1, value2, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFileNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_file not between", value1, value2, "gridsFile");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype =", value, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype <>", value, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype >", value, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype >=", value, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype <", value, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype <=", value, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype like", value, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype not like", value, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype in", values, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype not in", values, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype between", value1, value2, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometrySourceFiletypeNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_source_filetype not between", value1, value2, "geometrySourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype =", value, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype <>", value, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype >", value, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype >=", value, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype <", value, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype <=", value, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype like", value, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype not like", value, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype in", values, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype not in", values, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype between", value1, value2, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGeometryFiletypeNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("geometry_filetype not between", value1, value2, "geometryFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype =", value, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype <>", value, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype >", value, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype >=", value, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype <", value, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype <=", value, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype like", value, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype not like", value, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype in", values, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype not in", values, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype between", value1, value2, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsSourceFiletypeNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_source_filetype not between", value1, value2, "gridsSourceFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeIsNull() {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype is null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeIsNotNull() {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype is not null");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype =", value, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeNotEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype <>", value, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeGreaterThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype >", value, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeGreaterThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype >=", value, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeLessThan(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype <", value, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeLessThanOrEqualTo(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype <=", value, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype like", value, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeNotLike(String value) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype not like", value, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype in", values, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeNotIn(List<String> values) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype not in", values, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype between", value1, value2, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Criteria andGridsFiletypeNotBetween(String value1, String value2) {
 | 
	
		
			
				|  |  | +            addCriterion("grids_filetype not between", value1, value2, "gridsFiletype");
 | 
	
		
			
				|  |  | +            return (Criteria) this;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public static class Criteria extends GeneratedCriteria {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected Criteria() {
 | 
	
		
			
				|  |  | +            super();
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public static class Criterion {
 | 
	
		
			
				|  |  | +        private String condition;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        private Object value;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        private Object secondValue;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        private boolean noValue;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        private boolean singleValue;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        private boolean betweenValue;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        private boolean listValue;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        private String typeHandler;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public String getCondition() {
 | 
	
		
			
				|  |  | +            return condition;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Object getValue() {
 | 
	
		
			
				|  |  | +            return value;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Object getSecondValue() {
 | 
	
		
			
				|  |  | +            return secondValue;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public boolean isNoValue() {
 | 
	
		
			
				|  |  | +            return noValue;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public boolean isSingleValue() {
 | 
	
		
			
				|  |  | +            return singleValue;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public boolean isBetweenValue() {
 | 
	
		
			
				|  |  | +            return betweenValue;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public boolean isListValue() {
 | 
	
		
			
				|  |  | +            return listValue;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public String getTypeHandler() {
 | 
	
		
			
				|  |  | +            return typeHandler;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected Criterion(String condition) {
 | 
	
		
			
				|  |  | +            super();
 | 
	
		
			
				|  |  | +            this.condition = condition;
 | 
	
		
			
				|  |  | +            this.typeHandler = null;
 | 
	
		
			
				|  |  | +            this.noValue = true;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected Criterion(String condition, Object value, String typeHandler) {
 | 
	
		
			
				|  |  | +            super();
 | 
	
		
			
				|  |  | +            this.condition = condition;
 | 
	
		
			
				|  |  | +            this.value = value;
 | 
	
		
			
				|  |  | +            this.typeHandler = typeHandler;
 | 
	
		
			
				|  |  | +            if (value instanceof List<?>) {
 | 
	
		
			
				|  |  | +                this.listValue = true;
 | 
	
		
			
				|  |  | +            } else {
 | 
	
		
			
				|  |  | +                this.singleValue = true;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected Criterion(String condition, Object value) {
 | 
	
		
			
				|  |  | +            this(condition, value, null);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
 | 
	
		
			
				|  |  | +            super();
 | 
	
		
			
				|  |  | +            this.condition = condition;
 | 
	
		
			
				|  |  | +            this.value = value;
 | 
	
		
			
				|  |  | +            this.secondValue = secondValue;
 | 
	
		
			
				|  |  | +            this.typeHandler = typeHandler;
 | 
	
		
			
				|  |  | +            this.betweenValue = true;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        protected Criterion(String condition, Object value, Object secondValue) {
 | 
	
		
			
				|  |  | +            this(condition, value, secondValue, null);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +}
 |