|
@@ -1,731 +0,0 @@
|
|
-package com.bootdo.data.domain;
|
|
|
|
-
|
|
|
|
-import java.util.ArrayList;
|
|
|
|
-import java.util.Date;
|
|
|
|
-import java.util.List;
|
|
|
|
-
|
|
|
|
-public class CaDetailExample {
|
|
|
|
- protected String orderByClause;
|
|
|
|
-
|
|
|
|
- protected boolean distinct;
|
|
|
|
-
|
|
|
|
- protected List<Criteria> oredCriteria;
|
|
|
|
-
|
|
|
|
- public CaDetailExample() {
|
|
|
|
- oredCriteria = new ArrayList<>();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- 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<>();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- 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(Integer value) {
|
|
|
|
- addCriterion("id =", value, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andIdNotEqualTo(Integer value) {
|
|
|
|
- addCriterion("id <>", value, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andIdGreaterThan(Integer value) {
|
|
|
|
- addCriterion("id >", value, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andIdGreaterThanOrEqualTo(Integer value) {
|
|
|
|
- addCriterion("id >=", value, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andIdLessThan(Integer value) {
|
|
|
|
- addCriterion("id <", value, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andIdLessThanOrEqualTo(Integer value) {
|
|
|
|
- addCriterion("id <=", value, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andIdIn(List<Integer> values) {
|
|
|
|
- addCriterion("id in", values, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andIdNotIn(List<Integer> values) {
|
|
|
|
- addCriterion("id not in", values, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andIdBetween(Integer value1, Integer value2) {
|
|
|
|
- addCriterion("id between", value1, value2, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andIdNotBetween(Integer value1, Integer value2) {
|
|
|
|
- addCriterion("id not between", value1, value2, "id");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateIsNull() {
|
|
|
|
- addCriterion("key_pair_private is null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateIsNotNull() {
|
|
|
|
- addCriterion("key_pair_private is not null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateEqualTo(String value) {
|
|
|
|
- addCriterion("key_pair_private =", value, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateNotEqualTo(String value) {
|
|
|
|
- addCriterion("key_pair_private <>", value, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateGreaterThan(String value) {
|
|
|
|
- addCriterion("key_pair_private >", value, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateGreaterThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("key_pair_private >=", value, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateLessThan(String value) {
|
|
|
|
- addCriterion("key_pair_private <", value, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateLessThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("key_pair_private <=", value, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateLike(String value) {
|
|
|
|
- addCriterion("key_pair_private like", value, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateNotLike(String value) {
|
|
|
|
- addCriterion("key_pair_private not like", value, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateIn(List<String> values) {
|
|
|
|
- addCriterion("key_pair_private in", values, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateNotIn(List<String> values) {
|
|
|
|
- addCriterion("key_pair_private not in", values, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateBetween(String value1, String value2) {
|
|
|
|
- addCriterion("key_pair_private between", value1, value2, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPrivateNotBetween(String value1, String value2) {
|
|
|
|
- addCriterion("key_pair_private not between", value1, value2, "keyPairPrivate");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicIsNull() {
|
|
|
|
- addCriterion("key_pair_public is null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicIsNotNull() {
|
|
|
|
- addCriterion("key_pair_public is not null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicEqualTo(String value) {
|
|
|
|
- addCriterion("key_pair_public =", value, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicNotEqualTo(String value) {
|
|
|
|
- addCriterion("key_pair_public <>", value, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicGreaterThan(String value) {
|
|
|
|
- addCriterion("key_pair_public >", value, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicGreaterThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("key_pair_public >=", value, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicLessThan(String value) {
|
|
|
|
- addCriterion("key_pair_public <", value, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicLessThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("key_pair_public <=", value, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicLike(String value) {
|
|
|
|
- addCriterion("key_pair_public like", value, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicNotLike(String value) {
|
|
|
|
- addCriterion("key_pair_public not like", value, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicIn(List<String> values) {
|
|
|
|
- addCriterion("key_pair_public in", values, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicNotIn(List<String> values) {
|
|
|
|
- addCriterion("key_pair_public not in", values, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicBetween(String value1, String value2) {
|
|
|
|
- addCriterion("key_pair_public between", value1, value2, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andKeyPairPublicNotBetween(String value1, String value2) {
|
|
|
|
- addCriterion("key_pair_public not between", value1, value2, "keyPairPublic");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentIsNull() {
|
|
|
|
- addCriterion("request_content is null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentIsNotNull() {
|
|
|
|
- addCriterion("request_content is not null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentEqualTo(String value) {
|
|
|
|
- addCriterion("request_content =", value, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentNotEqualTo(String value) {
|
|
|
|
- addCriterion("request_content <>", value, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentGreaterThan(String value) {
|
|
|
|
- addCriterion("request_content >", value, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentGreaterThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("request_content >=", value, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentLessThan(String value) {
|
|
|
|
- addCriterion("request_content <", value, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentLessThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("request_content <=", value, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentLike(String value) {
|
|
|
|
- addCriterion("request_content like", value, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentNotLike(String value) {
|
|
|
|
- addCriterion("request_content not like", value, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentIn(List<String> values) {
|
|
|
|
- addCriterion("request_content in", values, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentNotIn(List<String> values) {
|
|
|
|
- addCriterion("request_content not in", values, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentBetween(String value1, String value2) {
|
|
|
|
- addCriterion("request_content between", value1, value2, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRequestContentNotBetween(String value1, String value2) {
|
|
|
|
- addCriterion("request_content not between", value1, value2, "requestContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentIsNull() {
|
|
|
|
- addCriterion("response_content is null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentIsNotNull() {
|
|
|
|
- addCriterion("response_content is not null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentEqualTo(String value) {
|
|
|
|
- addCriterion("response_content =", value, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentNotEqualTo(String value) {
|
|
|
|
- addCriterion("response_content <>", value, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentGreaterThan(String value) {
|
|
|
|
- addCriterion("response_content >", value, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentGreaterThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("response_content >=", value, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentLessThan(String value) {
|
|
|
|
- addCriterion("response_content <", value, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentLessThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("response_content <=", value, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentLike(String value) {
|
|
|
|
- addCriterion("response_content like", value, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentNotLike(String value) {
|
|
|
|
- addCriterion("response_content not like", value, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentIn(List<String> values) {
|
|
|
|
- addCriterion("response_content in", values, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentNotIn(List<String> values) {
|
|
|
|
- addCriterion("response_content not in", values, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentBetween(String value1, String value2) {
|
|
|
|
- addCriterion("response_content between", value1, value2, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andResponseContentNotBetween(String value1, String value2) {
|
|
|
|
- addCriterion("response_content not between", value1, value2, "responseContent");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeIsNull() {
|
|
|
|
- addCriterion("crate_time is null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeIsNotNull() {
|
|
|
|
- addCriterion("crate_time is not null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeEqualTo(Date value) {
|
|
|
|
- addCriterion("crate_time =", value, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeNotEqualTo(Date value) {
|
|
|
|
- addCriterion("crate_time <>", value, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeGreaterThan(Date value) {
|
|
|
|
- addCriterion("crate_time >", value, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeGreaterThanOrEqualTo(Date value) {
|
|
|
|
- addCriterion("crate_time >=", value, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeLessThan(Date value) {
|
|
|
|
- addCriterion("crate_time <", value, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeLessThanOrEqualTo(Date value) {
|
|
|
|
- addCriterion("crate_time <=", value, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeIn(List<Date> values) {
|
|
|
|
- addCriterion("crate_time in", values, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeNotIn(List<Date> values) {
|
|
|
|
- addCriterion("crate_time not in", values, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeBetween(Date value1, Date value2) {
|
|
|
|
- addCriterion("crate_time between", value1, value2, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andCrateTimeNotBetween(Date value1, Date value2) {
|
|
|
|
- addCriterion("crate_time not between", value1, value2, "crateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeIsNull() {
|
|
|
|
- addCriterion("update_time is null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeIsNotNull() {
|
|
|
|
- addCriterion("update_time is not null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeEqualTo(Date value) {
|
|
|
|
- addCriterion("update_time =", value, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeNotEqualTo(Date value) {
|
|
|
|
- addCriterion("update_time <>", value, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeGreaterThan(Date value) {
|
|
|
|
- addCriterion("update_time >", value, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
|
|
|
|
- addCriterion("update_time >=", value, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeLessThan(Date value) {
|
|
|
|
- addCriterion("update_time <", value, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
|
|
|
|
- addCriterion("update_time <=", value, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeIn(List<Date> values) {
|
|
|
|
- addCriterion("update_time in", values, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeNotIn(List<Date> values) {
|
|
|
|
- addCriterion("update_time not in", values, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeBetween(Date value1, Date value2) {
|
|
|
|
- addCriterion("update_time between", value1, value2, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
|
|
|
|
- addCriterion("update_time not between", value1, value2, "updateTime");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkIsNull() {
|
|
|
|
- addCriterion("remark is null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkIsNotNull() {
|
|
|
|
- addCriterion("remark is not null");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkEqualTo(String value) {
|
|
|
|
- addCriterion("remark =", value, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkNotEqualTo(String value) {
|
|
|
|
- addCriterion("remark <>", value, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkGreaterThan(String value) {
|
|
|
|
- addCriterion("remark >", value, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkGreaterThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("remark >=", value, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkLessThan(String value) {
|
|
|
|
- addCriterion("remark <", value, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkLessThanOrEqualTo(String value) {
|
|
|
|
- addCriterion("remark <=", value, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkLike(String value) {
|
|
|
|
- addCriterion("remark like", value, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkNotLike(String value) {
|
|
|
|
- addCriterion("remark not like", value, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkIn(List<String> values) {
|
|
|
|
- addCriterion("remark in", values, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkNotIn(List<String> values) {
|
|
|
|
- addCriterion("remark not in", values, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkBetween(String value1, String value2) {
|
|
|
|
- addCriterion("remark between", value1, value2, "remark");
|
|
|
|
- return (Criteria) this;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Criteria andRemarkNotBetween(String value1, String value2) {
|
|
|
|
- addCriterion("remark not between", value1, value2, "remark");
|
|
|
|
- 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);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|