|
@@ -0,0 +1,6001 @@
|
|
|
+package com.kxs.adminap.model.main;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class UsersExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public UsersExample() {
|
|
|
+ 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 andSortIsNull() {
|
|
|
+ addCriterion("Sort is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortIsNotNull() {
|
|
|
+ addCriterion("Sort is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortEqualTo(Integer value) {
|
|
|
+ addCriterion("Sort =", value, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortNotEqualTo(Integer value) {
|
|
|
+ addCriterion("Sort <>", value, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortGreaterThan(Integer value) {
|
|
|
+ addCriterion("Sort >", value, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("Sort >=", value, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortLessThan(Integer value) {
|
|
|
+ addCriterion("Sort <", value, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("Sort <=", value, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortIn(List<Integer> values) {
|
|
|
+ addCriterion("Sort in", values, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortNotIn(List<Integer> values) {
|
|
|
+ addCriterion("Sort not in", values, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("Sort between", value1, value2, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSortNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("Sort not between", value1, value2, "sort");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountIsNull() {
|
|
|
+ addCriterion("QueryCount is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountIsNotNull() {
|
|
|
+ addCriterion("QueryCount is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountEqualTo(Integer value) {
|
|
|
+ addCriterion("QueryCount =", value, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountNotEqualTo(Integer value) {
|
|
|
+ addCriterion("QueryCount <>", value, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountGreaterThan(Integer value) {
|
|
|
+ addCriterion("QueryCount >", value, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("QueryCount >=", value, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountLessThan(Integer value) {
|
|
|
+ addCriterion("QueryCount <", value, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("QueryCount <=", value, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountIn(List<Integer> values) {
|
|
|
+ addCriterion("QueryCount in", values, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountNotIn(List<Integer> values) {
|
|
|
+ addCriterion("QueryCount not in", values, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("QueryCount between", value1, value2, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andQueryCountNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("QueryCount not between", value1, value2, "queryCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusIsNull() {
|
|
|
+ addCriterion("Status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusIsNotNull() {
|
|
|
+ addCriterion("Status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("Status =", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("Status <>", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("Status >", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("Status >=", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusLessThan(Integer value) {
|
|
|
+ addCriterion("Status <", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("Status <=", value, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("Status in", values, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("Status not in", values, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("Status between", value1, value2, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("Status not between", value1, value2, "status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionIsNull() {
|
|
|
+ addCriterion("Version is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionIsNotNull() {
|
|
|
+ addCriterion("Version is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionEqualTo(Integer value) {
|
|
|
+ addCriterion("Version =", value, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionNotEqualTo(Integer value) {
|
|
|
+ addCriterion("Version <>", value, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionGreaterThan(Integer value) {
|
|
|
+ addCriterion("Version >", value, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("Version >=", value, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionLessThan(Integer value) {
|
|
|
+ addCriterion("Version <", value, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("Version <=", value, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionIn(List<Integer> values) {
|
|
|
+ addCriterion("Version in", values, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionNotIn(List<Integer> values) {
|
|
|
+ addCriterion("Version not in", values, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("Version between", value1, value2, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVersionNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("Version not between", value1, value2, "version");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateIsNull() {
|
|
|
+ addCriterion("CreateDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateIsNotNull() {
|
|
|
+ addCriterion("CreateDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateEqualTo(Date value) {
|
|
|
+ addCriterion("CreateDate =", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("CreateDate <>", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateGreaterThan(Date value) {
|
|
|
+ addCriterion("CreateDate >", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CreateDate >=", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateLessThan(Date value) {
|
|
|
+ addCriterion("CreateDate <", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CreateDate <=", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateIn(List<Date> values) {
|
|
|
+ addCriterion("CreateDate in", values, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("CreateDate not in", values, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CreateDate between", value1, value2, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CreateDate not between", value1, value2, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateIsNull() {
|
|
|
+ addCriterion("UpdateDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateIsNotNull() {
|
|
|
+ addCriterion("UpdateDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateEqualTo(Date value) {
|
|
|
+ addCriterion("UpdateDate =", value, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("UpdateDate <>", value, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateGreaterThan(Date value) {
|
|
|
+ addCriterion("UpdateDate >", value, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("UpdateDate >=", value, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateLessThan(Date value) {
|
|
|
+ addCriterion("UpdateDate <", value, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("UpdateDate <=", value, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateIn(List<Date> values) {
|
|
|
+ addCriterion("UpdateDate in", values, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("UpdateDate not in", values, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("UpdateDate between", value1, value2, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("UpdateDate not between", value1, value2, "updateDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManIsNull() {
|
|
|
+ addCriterion("CreateMan is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManIsNotNull() {
|
|
|
+ addCriterion("CreateMan is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManEqualTo(String value) {
|
|
|
+ addCriterion("CreateMan =", value, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManNotEqualTo(String value) {
|
|
|
+ addCriterion("CreateMan <>", value, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManGreaterThan(String value) {
|
|
|
+ addCriterion("CreateMan >", value, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CreateMan >=", value, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManLessThan(String value) {
|
|
|
+ addCriterion("CreateMan <", value, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CreateMan <=", value, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManLike(String value) {
|
|
|
+ addCriterion("CreateMan like", value, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManNotLike(String value) {
|
|
|
+ addCriterion("CreateMan not like", value, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManIn(List<String> values) {
|
|
|
+ addCriterion("CreateMan in", values, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManNotIn(List<String> values) {
|
|
|
+ addCriterion("CreateMan not in", values, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManBetween(String value1, String value2) {
|
|
|
+ addCriterion("CreateMan between", value1, value2, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateManNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("CreateMan not between", value1, value2, "createMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManIsNull() {
|
|
|
+ addCriterion("UpdateMan is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManIsNotNull() {
|
|
|
+ addCriterion("UpdateMan is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManEqualTo(String value) {
|
|
|
+ addCriterion("UpdateMan =", value, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManNotEqualTo(String value) {
|
|
|
+ addCriterion("UpdateMan <>", value, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManGreaterThan(String value) {
|
|
|
+ addCriterion("UpdateMan >", value, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("UpdateMan >=", value, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManLessThan(String value) {
|
|
|
+ addCriterion("UpdateMan <", value, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("UpdateMan <=", value, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManLike(String value) {
|
|
|
+ addCriterion("UpdateMan like", value, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManNotLike(String value) {
|
|
|
+ addCriterion("UpdateMan not like", value, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManIn(List<String> values) {
|
|
|
+ addCriterion("UpdateMan in", values, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManNotIn(List<String> values) {
|
|
|
+ addCriterion("UpdateMan not in", values, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManBetween(String value1, String value2) {
|
|
|
+ addCriterion("UpdateMan between", value1, value2, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateManNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("UpdateMan not between", value1, value2, "updateMan");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleIsNull() {
|
|
|
+ addCriterion("SeoTitle is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleIsNotNull() {
|
|
|
+ addCriterion("SeoTitle is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleEqualTo(String value) {
|
|
|
+ addCriterion("SeoTitle =", value, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleNotEqualTo(String value) {
|
|
|
+ addCriterion("SeoTitle <>", value, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleGreaterThan(String value) {
|
|
|
+ addCriterion("SeoTitle >", value, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SeoTitle >=", value, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleLessThan(String value) {
|
|
|
+ addCriterion("SeoTitle <", value, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SeoTitle <=", value, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleLike(String value) {
|
|
|
+ addCriterion("SeoTitle like", value, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleNotLike(String value) {
|
|
|
+ addCriterion("SeoTitle not like", value, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleIn(List<String> values) {
|
|
|
+ addCriterion("SeoTitle in", values, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleNotIn(List<String> values) {
|
|
|
+ addCriterion("SeoTitle not in", values, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleBetween(String value1, String value2) {
|
|
|
+ addCriterion("SeoTitle between", value1, value2, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoTitleNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("SeoTitle not between", value1, value2, "seoTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordIsNull() {
|
|
|
+ addCriterion("SeoKeyword is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordIsNotNull() {
|
|
|
+ addCriterion("SeoKeyword is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordEqualTo(String value) {
|
|
|
+ addCriterion("SeoKeyword =", value, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordNotEqualTo(String value) {
|
|
|
+ addCriterion("SeoKeyword <>", value, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordGreaterThan(String value) {
|
|
|
+ addCriterion("SeoKeyword >", value, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SeoKeyword >=", value, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordLessThan(String value) {
|
|
|
+ addCriterion("SeoKeyword <", value, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SeoKeyword <=", value, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordLike(String value) {
|
|
|
+ addCriterion("SeoKeyword like", value, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordNotLike(String value) {
|
|
|
+ addCriterion("SeoKeyword not like", value, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordIn(List<String> values) {
|
|
|
+ addCriterion("SeoKeyword in", values, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordNotIn(List<String> values) {
|
|
|
+ addCriterion("SeoKeyword not in", values, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordBetween(String value1, String value2) {
|
|
|
+ addCriterion("SeoKeyword between", value1, value2, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoKeywordNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("SeoKeyword not between", value1, value2, "seoKeyword");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionIsNull() {
|
|
|
+ addCriterion("SeoDescription is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionIsNotNull() {
|
|
|
+ addCriterion("SeoDescription is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionEqualTo(String value) {
|
|
|
+ addCriterion("SeoDescription =", value, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionNotEqualTo(String value) {
|
|
|
+ addCriterion("SeoDescription <>", value, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionGreaterThan(String value) {
|
|
|
+ addCriterion("SeoDescription >", value, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SeoDescription >=", value, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionLessThan(String value) {
|
|
|
+ addCriterion("SeoDescription <", value, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SeoDescription <=", value, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionLike(String value) {
|
|
|
+ addCriterion("SeoDescription like", value, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionNotLike(String value) {
|
|
|
+ addCriterion("SeoDescription not like", value, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionIn(List<String> values) {
|
|
|
+ addCriterion("SeoDescription in", values, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionNotIn(List<String> values) {
|
|
|
+ addCriterion("SeoDescription not in", values, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionBetween(String value1, String value2) {
|
|
|
+ addCriterion("SeoDescription between", value1, value2, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSeoDescriptionNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("SeoDescription not between", value1, value2, "seoDescription");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasIsNull() {
|
|
|
+ addCriterion("AgentAreas is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasIsNotNull() {
|
|
|
+ addCriterion("AgentAreas is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasEqualTo(String value) {
|
|
|
+ addCriterion("AgentAreas =", value, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasNotEqualTo(String value) {
|
|
|
+ addCriterion("AgentAreas <>", value, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasGreaterThan(String value) {
|
|
|
+ addCriterion("AgentAreas >", value, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("AgentAreas >=", value, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasLessThan(String value) {
|
|
|
+ addCriterion("AgentAreas <", value, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("AgentAreas <=", value, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasLike(String value) {
|
|
|
+ addCriterion("AgentAreas like", value, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasNotLike(String value) {
|
|
|
+ addCriterion("AgentAreas not like", value, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasIn(List<String> values) {
|
|
|
+ addCriterion("AgentAreas in", values, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasNotIn(List<String> values) {
|
|
|
+ addCriterion("AgentAreas not in", values, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasBetween(String value1, String value2) {
|
|
|
+ addCriterion("AgentAreas between", value1, value2, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentAreasNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("AgentAreas not between", value1, value2, "agentAreas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelIsNull() {
|
|
|
+ addCriterion("AgentLevel is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelIsNotNull() {
|
|
|
+ addCriterion("AgentLevel is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelEqualTo(Integer value) {
|
|
|
+ addCriterion("AgentLevel =", value, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelNotEqualTo(Integer value) {
|
|
|
+ addCriterion("AgentLevel <>", value, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelGreaterThan(Integer value) {
|
|
|
+ addCriterion("AgentLevel >", value, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("AgentLevel >=", value, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelLessThan(Integer value) {
|
|
|
+ addCriterion("AgentLevel <", value, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("AgentLevel <=", value, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelIn(List<Integer> values) {
|
|
|
+ addCriterion("AgentLevel in", values, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelNotIn(List<Integer> values) {
|
|
|
+ addCriterion("AgentLevel not in", values, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("AgentLevel between", value1, value2, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAgentLevelNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("AgentLevel not between", value1, value2, "agentLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameIsNull() {
|
|
|
+ addCriterion("SettleBankCardName is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameIsNotNull() {
|
|
|
+ addCriterion("SettleBankCardName is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankCardName =", value, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameNotEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankCardName <>", value, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameGreaterThan(String value) {
|
|
|
+ addCriterion("SettleBankCardName >", value, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankCardName >=", value, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameLessThan(String value) {
|
|
|
+ addCriterion("SettleBankCardName <", value, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankCardName <=", value, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameLike(String value) {
|
|
|
+ addCriterion("SettleBankCardName like", value, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameNotLike(String value) {
|
|
|
+ addCriterion("SettleBankCardName not like", value, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameIn(List<String> values) {
|
|
|
+ addCriterion("SettleBankCardName in", values, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameNotIn(List<String> values) {
|
|
|
+ addCriterion("SettleBankCardName not in", values, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("SettleBankCardName between", value1, value2, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("SettleBankCardName not between", value1, value2, "settleBankCardName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateIsNull() {
|
|
|
+ addCriterion("CertValidEndDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateIsNotNull() {
|
|
|
+ addCriterion("CertValidEndDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateEqualTo(Date value) {
|
|
|
+ addCriterion("CertValidEndDate =", value, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("CertValidEndDate <>", value, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateGreaterThan(Date value) {
|
|
|
+ addCriterion("CertValidEndDate >", value, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CertValidEndDate >=", value, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateLessThan(Date value) {
|
|
|
+ addCriterion("CertValidEndDate <", value, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CertValidEndDate <=", value, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateIn(List<Date> values) {
|
|
|
+ addCriterion("CertValidEndDate in", values, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("CertValidEndDate not in", values, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CertValidEndDate between", value1, value2, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidEndDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CertValidEndDate not between", value1, value2, "certValidEndDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateIsNull() {
|
|
|
+ addCriterion("CertValidStartDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateIsNotNull() {
|
|
|
+ addCriterion("CertValidStartDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateEqualTo(Date value) {
|
|
|
+ addCriterion("CertValidStartDate =", value, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("CertValidStartDate <>", value, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateGreaterThan(Date value) {
|
|
|
+ addCriterion("CertValidStartDate >", value, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CertValidStartDate >=", value, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateLessThan(Date value) {
|
|
|
+ addCriterion("CertValidStartDate <", value, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CertValidStartDate <=", value, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateIn(List<Date> values) {
|
|
|
+ addCriterion("CertValidStartDate in", values, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("CertValidStartDate not in", values, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CertValidStartDate between", value1, value2, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertValidStartDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CertValidStartDate not between", value1, value2, "certValidStartDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateIsNull() {
|
|
|
+ addCriterion("CitySetDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateIsNotNull() {
|
|
|
+ addCriterion("CitySetDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateEqualTo(Date value) {
|
|
|
+ addCriterion("CitySetDate =", value, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("CitySetDate <>", value, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateGreaterThan(Date value) {
|
|
|
+ addCriterion("CitySetDate >", value, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CitySetDate >=", value, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateLessThan(Date value) {
|
|
|
+ addCriterion("CitySetDate <", value, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CitySetDate <=", value, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateIn(List<Date> values) {
|
|
|
+ addCriterion("CitySetDate in", values, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("CitySetDate not in", values, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CitySetDate between", value1, value2, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCitySetDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CitySetDate not between", value1, value2, "citySetDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateIsNull() {
|
|
|
+ addCriterion("ProfitRewardRate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateIsNotNull() {
|
|
|
+ addCriterion("ProfitRewardRate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ProfitRewardRate =", value, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateNotEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ProfitRewardRate <>", value, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateGreaterThan(BigDecimal value) {
|
|
|
+ addCriterion("ProfitRewardRate >", value, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateGreaterThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ProfitRewardRate >=", value, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateLessThan(BigDecimal value) {
|
|
|
+ addCriterion("ProfitRewardRate <", value, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateLessThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ProfitRewardRate <=", value, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("ProfitRewardRate in", values, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateNotIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("ProfitRewardRate not in", values, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("ProfitRewardRate between", value1, value2, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProfitRewardRateNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("ProfitRewardRate not between", value1, value2, "profitRewardRate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountIsNull() {
|
|
|
+ addCriterion("ActiveRewardAmount is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountIsNotNull() {
|
|
|
+ addCriterion("ActiveRewardAmount is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ActiveRewardAmount =", value, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountNotEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ActiveRewardAmount <>", value, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountGreaterThan(BigDecimal value) {
|
|
|
+ addCriterion("ActiveRewardAmount >", value, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountGreaterThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ActiveRewardAmount >=", value, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountLessThan(BigDecimal value) {
|
|
|
+ addCriterion("ActiveRewardAmount <", value, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountLessThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ActiveRewardAmount <=", value, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("ActiveRewardAmount in", values, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountNotIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("ActiveRewardAmount not in", values, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("ActiveRewardAmount between", value1, value2, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andActiveRewardAmountNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("ActiveRewardAmount not between", value1, value2, "activeRewardAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtIsNull() {
|
|
|
+ addCriterion("CashFreezeAmt is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtIsNotNull() {
|
|
|
+ addCriterion("CashFreezeAmt is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("CashFreezeAmt =", value, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtNotEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("CashFreezeAmt <>", value, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtGreaterThan(BigDecimal value) {
|
|
|
+ addCriterion("CashFreezeAmt >", value, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtGreaterThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("CashFreezeAmt >=", value, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtLessThan(BigDecimal value) {
|
|
|
+ addCriterion("CashFreezeAmt <", value, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtLessThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("CashFreezeAmt <=", value, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("CashFreezeAmt in", values, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtNotIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("CashFreezeAmt not in", values, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("CashFreezeAmt between", value1, value2, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashFreezeAmtNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("CashFreezeAmt not between", value1, value2, "cashFreezeAmt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountIsNull() {
|
|
|
+ addCriterion("SettleAmount is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountIsNotNull() {
|
|
|
+ addCriterion("SettleAmount is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("SettleAmount =", value, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountNotEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("SettleAmount <>", value, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountGreaterThan(BigDecimal value) {
|
|
|
+ addCriterion("SettleAmount >", value, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountGreaterThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("SettleAmount >=", value, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountLessThan(BigDecimal value) {
|
|
|
+ addCriterion("SettleAmount <", value, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountLessThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("SettleAmount <=", value, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("SettleAmount in", values, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountNotIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("SettleAmount not in", values, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("SettleAmount between", value1, value2, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleAmountNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("SettleAmount not between", value1, value2, "settleAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeIsNull() {
|
|
|
+ addCriterion("MakerCode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeIsNotNull() {
|
|
|
+ addCriterion("MakerCode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeEqualTo(String value) {
|
|
|
+ addCriterion("MakerCode =", value, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("MakerCode <>", value, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeGreaterThan(String value) {
|
|
|
+ addCriterion("MakerCode >", value, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("MakerCode >=", value, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeLessThan(String value) {
|
|
|
+ addCriterion("MakerCode <", value, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("MakerCode <=", value, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeLike(String value) {
|
|
|
+ addCriterion("MakerCode like", value, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeNotLike(String value) {
|
|
|
+ addCriterion("MakerCode not like", value, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeIn(List<String> values) {
|
|
|
+ addCriterion("MakerCode in", values, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("MakerCode not in", values, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("MakerCode between", value1, value2, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMakerCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("MakerCode not between", value1, value2, "makerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdIsNull() {
|
|
|
+ addCriterion("HandPwd is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdIsNotNull() {
|
|
|
+ addCriterion("HandPwd is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdEqualTo(String value) {
|
|
|
+ addCriterion("HandPwd =", value, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdNotEqualTo(String value) {
|
|
|
+ addCriterion("HandPwd <>", value, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdGreaterThan(String value) {
|
|
|
+ addCriterion("HandPwd >", value, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("HandPwd >=", value, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdLessThan(String value) {
|
|
|
+ addCriterion("HandPwd <", value, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("HandPwd <=", value, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdLike(String value) {
|
|
|
+ addCriterion("HandPwd like", value, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdNotLike(String value) {
|
|
|
+ addCriterion("HandPwd not like", value, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdIn(List<String> values) {
|
|
|
+ addCriterion("HandPwd in", values, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdNotIn(List<String> values) {
|
|
|
+ addCriterion("HandPwd not in", values, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdBetween(String value1, String value2) {
|
|
|
+ addCriterion("HandPwd between", value1, value2, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandPwdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("HandPwd not between", value1, value2, "handPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageIsNull() {
|
|
|
+ addCriterion("BankCardPositiveImage is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageIsNotNull() {
|
|
|
+ addCriterion("BankCardPositiveImage is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageEqualTo(String value) {
|
|
|
+ addCriterion("BankCardPositiveImage =", value, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageNotEqualTo(String value) {
|
|
|
+ addCriterion("BankCardPositiveImage <>", value, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageGreaterThan(String value) {
|
|
|
+ addCriterion("BankCardPositiveImage >", value, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("BankCardPositiveImage >=", value, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageLessThan(String value) {
|
|
|
+ addCriterion("BankCardPositiveImage <", value, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("BankCardPositiveImage <=", value, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageLike(String value) {
|
|
|
+ addCriterion("BankCardPositiveImage like", value, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageNotLike(String value) {
|
|
|
+ addCriterion("BankCardPositiveImage not like", value, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageIn(List<String> values) {
|
|
|
+ addCriterion("BankCardPositiveImage in", values, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageNotIn(List<String> values) {
|
|
|
+ addCriterion("BankCardPositiveImage not in", values, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageBetween(String value1, String value2) {
|
|
|
+ addCriterion("BankCardPositiveImage between", value1, value2, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankCardPositiveImageNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("BankCardPositiveImage not between", value1, value2, "bankCardPositiveImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageIsNull() {
|
|
|
+ addCriterion("HandCertImage is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageIsNotNull() {
|
|
|
+ addCriterion("HandCertImage is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageEqualTo(String value) {
|
|
|
+ addCriterion("HandCertImage =", value, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageNotEqualTo(String value) {
|
|
|
+ addCriterion("HandCertImage <>", value, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageGreaterThan(String value) {
|
|
|
+ addCriterion("HandCertImage >", value, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("HandCertImage >=", value, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageLessThan(String value) {
|
|
|
+ addCriterion("HandCertImage <", value, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("HandCertImage <=", value, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageLike(String value) {
|
|
|
+ addCriterion("HandCertImage like", value, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageNotLike(String value) {
|
|
|
+ addCriterion("HandCertImage not like", value, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageIn(List<String> values) {
|
|
|
+ addCriterion("HandCertImage in", values, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageNotIn(List<String> values) {
|
|
|
+ addCriterion("HandCertImage not in", values, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageBetween(String value1, String value2) {
|
|
|
+ addCriterion("HandCertImage between", value1, value2, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHandCertImageNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("HandCertImage not between", value1, value2, "handCertImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageIsNull() {
|
|
|
+ addCriterion("CertReverseImage is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageIsNotNull() {
|
|
|
+ addCriterion("CertReverseImage is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageEqualTo(String value) {
|
|
|
+ addCriterion("CertReverseImage =", value, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageNotEqualTo(String value) {
|
|
|
+ addCriterion("CertReverseImage <>", value, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageGreaterThan(String value) {
|
|
|
+ addCriterion("CertReverseImage >", value, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CertReverseImage >=", value, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageLessThan(String value) {
|
|
|
+ addCriterion("CertReverseImage <", value, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CertReverseImage <=", value, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageLike(String value) {
|
|
|
+ addCriterion("CertReverseImage like", value, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageNotLike(String value) {
|
|
|
+ addCriterion("CertReverseImage not like", value, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageIn(List<String> values) {
|
|
|
+ addCriterion("CertReverseImage in", values, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageNotIn(List<String> values) {
|
|
|
+ addCriterion("CertReverseImage not in", values, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageBetween(String value1, String value2) {
|
|
|
+ addCriterion("CertReverseImage between", value1, value2, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertReverseImageNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("CertReverseImage not between", value1, value2, "certReverseImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageIsNull() {
|
|
|
+ addCriterion("CertFrontImage is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageIsNotNull() {
|
|
|
+ addCriterion("CertFrontImage is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageEqualTo(String value) {
|
|
|
+ addCriterion("CertFrontImage =", value, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageNotEqualTo(String value) {
|
|
|
+ addCriterion("CertFrontImage <>", value, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageGreaterThan(String value) {
|
|
|
+ addCriterion("CertFrontImage >", value, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CertFrontImage >=", value, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageLessThan(String value) {
|
|
|
+ addCriterion("CertFrontImage <", value, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CertFrontImage <=", value, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageLike(String value) {
|
|
|
+ addCriterion("CertFrontImage like", value, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageNotLike(String value) {
|
|
|
+ addCriterion("CertFrontImage not like", value, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageIn(List<String> values) {
|
|
|
+ addCriterion("CertFrontImage in", values, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageNotIn(List<String> values) {
|
|
|
+ addCriterion("CertFrontImage not in", values, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageBetween(String value1, String value2) {
|
|
|
+ addCriterion("CertFrontImage between", value1, value2, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertFrontImageNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("CertFrontImage not between", value1, value2, "certFrontImage");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenIsNull() {
|
|
|
+ addCriterion("DeviceToken is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenIsNotNull() {
|
|
|
+ addCriterion("DeviceToken is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenEqualTo(String value) {
|
|
|
+ addCriterion("DeviceToken =", value, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenNotEqualTo(String value) {
|
|
|
+ addCriterion("DeviceToken <>", value, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenGreaterThan(String value) {
|
|
|
+ addCriterion("DeviceToken >", value, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("DeviceToken >=", value, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenLessThan(String value) {
|
|
|
+ addCriterion("DeviceToken <", value, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("DeviceToken <=", value, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenLike(String value) {
|
|
|
+ addCriterion("DeviceToken like", value, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenNotLike(String value) {
|
|
|
+ addCriterion("DeviceToken not like", value, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenIn(List<String> values) {
|
|
|
+ addCriterion("DeviceToken in", values, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenNotIn(List<String> values) {
|
|
|
+ addCriterion("DeviceToken not in", values, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenBetween(String value1, String value2) {
|
|
|
+ addCriterion("DeviceToken between", value1, value2, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTokenNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("DeviceToken not between", value1, value2, "deviceToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdIsNull() {
|
|
|
+ addCriterion("DeviceId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdIsNotNull() {
|
|
|
+ addCriterion("DeviceId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdEqualTo(String value) {
|
|
|
+ addCriterion("DeviceId =", value, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdNotEqualTo(String value) {
|
|
|
+ addCriterion("DeviceId <>", value, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdGreaterThan(String value) {
|
|
|
+ addCriterion("DeviceId >", value, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("DeviceId >=", value, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdLessThan(String value) {
|
|
|
+ addCriterion("DeviceId <", value, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("DeviceId <=", value, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdLike(String value) {
|
|
|
+ addCriterion("DeviceId like", value, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdNotLike(String value) {
|
|
|
+ addCriterion("DeviceId not like", value, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdIn(List<String> values) {
|
|
|
+ addCriterion("DeviceId in", values, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdNotIn(List<String> values) {
|
|
|
+ addCriterion("DeviceId not in", values, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("DeviceId between", value1, value2, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("DeviceId not between", value1, value2, "deviceId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateIsNull() {
|
|
|
+ addCriterion("ExpiredDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateIsNotNull() {
|
|
|
+ addCriterion("ExpiredDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateEqualTo(Date value) {
|
|
|
+ addCriterion("ExpiredDate =", value, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("ExpiredDate <>", value, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateGreaterThan(Date value) {
|
|
|
+ addCriterion("ExpiredDate >", value, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("ExpiredDate >=", value, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateLessThan(Date value) {
|
|
|
+ addCriterion("ExpiredDate <", value, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("ExpiredDate <=", value, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateIn(List<Date> values) {
|
|
|
+ addCriterion("ExpiredDate in", values, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("ExpiredDate not in", values, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("ExpiredDate between", value1, value2, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExpiredDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("ExpiredDate not between", value1, value2, "expiredDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenIsNull() {
|
|
|
+ addCriterion("AccessToken is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenIsNotNull() {
|
|
|
+ addCriterion("AccessToken is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenEqualTo(String value) {
|
|
|
+ addCriterion("AccessToken =", value, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenNotEqualTo(String value) {
|
|
|
+ addCriterion("AccessToken <>", value, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenGreaterThan(String value) {
|
|
|
+ addCriterion("AccessToken >", value, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("AccessToken >=", value, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenLessThan(String value) {
|
|
|
+ addCriterion("AccessToken <", value, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("AccessToken <=", value, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenLike(String value) {
|
|
|
+ addCriterion("AccessToken like", value, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenNotLike(String value) {
|
|
|
+ addCriterion("AccessToken not like", value, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenIn(List<String> values) {
|
|
|
+ addCriterion("AccessToken in", values, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenNotIn(List<String> values) {
|
|
|
+ addCriterion("AccessToken not in", values, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenBetween(String value1, String value2) {
|
|
|
+ addCriterion("AccessToken between", value1, value2, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAccessTokenNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("AccessToken not between", value1, value2, "accessToken");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkIsNull() {
|
|
|
+ addCriterion("SettleRemark is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkIsNotNull() {
|
|
|
+ addCriterion("SettleRemark is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkEqualTo(String value) {
|
|
|
+ addCriterion("SettleRemark =", value, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkNotEqualTo(String value) {
|
|
|
+ addCriterion("SettleRemark <>", value, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkGreaterThan(String value) {
|
|
|
+ addCriterion("SettleRemark >", value, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SettleRemark >=", value, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkLessThan(String value) {
|
|
|
+ addCriterion("SettleRemark <", value, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SettleRemark <=", value, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkLike(String value) {
|
|
|
+ addCriterion("SettleRemark like", value, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkNotLike(String value) {
|
|
|
+ addCriterion("SettleRemark not like", value, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkIn(List<String> values) {
|
|
|
+ addCriterion("SettleRemark in", values, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkNotIn(List<String> values) {
|
|
|
+ addCriterion("SettleRemark not in", values, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkBetween(String value1, String value2) {
|
|
|
+ addCriterion("SettleRemark between", value1, value2, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleRemarkNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("SettleRemark not between", value1, value2, "settleRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkIsNull() {
|
|
|
+ addCriterion("RreezeRemark is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkIsNotNull() {
|
|
|
+ addCriterion("RreezeRemark is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkEqualTo(String value) {
|
|
|
+ addCriterion("RreezeRemark =", value, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkNotEqualTo(String value) {
|
|
|
+ addCriterion("RreezeRemark <>", value, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkGreaterThan(String value) {
|
|
|
+ addCriterion("RreezeRemark >", value, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("RreezeRemark >=", value, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkLessThan(String value) {
|
|
|
+ addCriterion("RreezeRemark <", value, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("RreezeRemark <=", value, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkLike(String value) {
|
|
|
+ addCriterion("RreezeRemark like", value, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkNotLike(String value) {
|
|
|
+ addCriterion("RreezeRemark not like", value, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkIn(List<String> values) {
|
|
|
+ addCriterion("RreezeRemark in", values, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkNotIn(List<String> values) {
|
|
|
+ addCriterion("RreezeRemark not in", values, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkBetween(String value1, String value2) {
|
|
|
+ addCriterion("RreezeRemark between", value1, value2, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRreezeRemarkNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("RreezeRemark not between", value1, value2, "rreezeRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkIsNull() {
|
|
|
+ addCriterion("RiskRemark is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkIsNotNull() {
|
|
|
+ addCriterion("RiskRemark is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkEqualTo(String value) {
|
|
|
+ addCriterion("RiskRemark =", value, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkNotEqualTo(String value) {
|
|
|
+ addCriterion("RiskRemark <>", value, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkGreaterThan(String value) {
|
|
|
+ addCriterion("RiskRemark >", value, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("RiskRemark >=", value, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkLessThan(String value) {
|
|
|
+ addCriterion("RiskRemark <", value, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("RiskRemark <=", value, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkLike(String value) {
|
|
|
+ addCriterion("RiskRemark like", value, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkNotLike(String value) {
|
|
|
+ addCriterion("RiskRemark not like", value, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkIn(List<String> values) {
|
|
|
+ addCriterion("RiskRemark in", values, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkNotIn(List<String> values) {
|
|
|
+ addCriterion("RiskRemark not in", values, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkBetween(String value1, String value2) {
|
|
|
+ addCriterion("RiskRemark between", value1, value2, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskRemarkNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("RiskRemark not between", value1, value2, "riskRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagIsNull() {
|
|
|
+ addCriterion("RiskFlag is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagIsNotNull() {
|
|
|
+ addCriterion("RiskFlag is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagEqualTo(Boolean value) {
|
|
|
+ addCriterion("RiskFlag =", value, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagNotEqualTo(Boolean value) {
|
|
|
+ addCriterion("RiskFlag <>", value, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagGreaterThan(Boolean value) {
|
|
|
+ addCriterion("RiskFlag >", value, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagGreaterThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("RiskFlag >=", value, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagLessThan(Boolean value) {
|
|
|
+ addCriterion("RiskFlag <", value, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagLessThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("RiskFlag <=", value, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagIn(List<Boolean> values) {
|
|
|
+ addCriterion("RiskFlag in", values, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagNotIn(List<Boolean> values) {
|
|
|
+ addCriterion("RiskFlag not in", values, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("RiskFlag between", value1, value2, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRiskFlagNotBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("RiskFlag not between", value1, value2, "riskFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateIsNull() {
|
|
|
+ addCriterion("AuthDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateIsNotNull() {
|
|
|
+ addCriterion("AuthDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateEqualTo(Date value) {
|
|
|
+ addCriterion("AuthDate =", value, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("AuthDate <>", value, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateGreaterThan(Date value) {
|
|
|
+ addCriterion("AuthDate >", value, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("AuthDate >=", value, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateLessThan(Date value) {
|
|
|
+ addCriterion("AuthDate <", value, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("AuthDate <=", value, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateIn(List<Date> values) {
|
|
|
+ addCriterion("AuthDate in", values, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("AuthDate not in", values, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("AuthDate between", value1, value2, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("AuthDate not between", value1, value2, "authDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagIsNull() {
|
|
|
+ addCriterion("AuthFlag is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagIsNotNull() {
|
|
|
+ addCriterion("AuthFlag is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagEqualTo(Boolean value) {
|
|
|
+ addCriterion("AuthFlag =", value, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagNotEqualTo(Boolean value) {
|
|
|
+ addCriterion("AuthFlag <>", value, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagGreaterThan(Boolean value) {
|
|
|
+ addCriterion("AuthFlag >", value, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagGreaterThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("AuthFlag >=", value, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagLessThan(Boolean value) {
|
|
|
+ addCriterion("AuthFlag <", value, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagLessThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("AuthFlag <=", value, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagIn(List<Boolean> values) {
|
|
|
+ addCriterion("AuthFlag in", values, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagNotIn(List<Boolean> values) {
|
|
|
+ addCriterion("AuthFlag not in", values, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("AuthFlag between", value1, value2, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuthFlagNotBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("AuthFlag not between", value1, value2, "authFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusIsNull() {
|
|
|
+ addCriterion("LockStatus is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusIsNotNull() {
|
|
|
+ addCriterion("LockStatus is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusEqualTo(Boolean value) {
|
|
|
+ addCriterion("LockStatus =", value, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusNotEqualTo(Boolean value) {
|
|
|
+ addCriterion("LockStatus <>", value, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusGreaterThan(Boolean value) {
|
|
|
+ addCriterion("LockStatus >", value, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusGreaterThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("LockStatus >=", value, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusLessThan(Boolean value) {
|
|
|
+ addCriterion("LockStatus <", value, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusLessThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("LockStatus <=", value, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusIn(List<Boolean> values) {
|
|
|
+ addCriterion("LockStatus in", values, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusNotIn(List<Boolean> values) {
|
|
|
+ addCriterion("LockStatus not in", values, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("LockStatus between", value1, value2, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLockStatusNotBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("LockStatus not between", value1, value2, "lockStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusIsNull() {
|
|
|
+ addCriterion("AuditStatus is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusIsNotNull() {
|
|
|
+ addCriterion("AuditStatus is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("AuditStatus =", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("AuditStatus <>", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("AuditStatus >", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("AuditStatus >=", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusLessThan(Integer value) {
|
|
|
+ addCriterion("AuditStatus <", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("AuditStatus <=", value, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("AuditStatus in", values, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("AuditStatus not in", values, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("AuditStatus between", value1, value2, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAuditStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("AuditStatus not between", value1, value2, "auditStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusIsNull() {
|
|
|
+ addCriterion("LoginStatus is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusIsNotNull() {
|
|
|
+ addCriterion("LoginStatus is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("LoginStatus =", value, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("LoginStatus <>", value, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("LoginStatus >", value, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("LoginStatus >=", value, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusLessThan(Integer value) {
|
|
|
+ addCriterion("LoginStatus <", value, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("LoginStatus <=", value, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("LoginStatus in", values, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("LoginStatus not in", values, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("LoginStatus between", value1, value2, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("LoginStatus not between", value1, value2, "loginStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateIsNull() {
|
|
|
+ addCriterion("MerchantDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateIsNotNull() {
|
|
|
+ addCriterion("MerchantDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateEqualTo(Date value) {
|
|
|
+ addCriterion("MerchantDate =", value, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("MerchantDate <>", value, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateGreaterThan(Date value) {
|
|
|
+ addCriterion("MerchantDate >", value, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("MerchantDate >=", value, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateLessThan(Date value) {
|
|
|
+ addCriterion("MerchantDate <", value, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("MerchantDate <=", value, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateIn(List<Date> values) {
|
|
|
+ addCriterion("MerchantDate in", values, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("MerchantDate not in", values, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("MerchantDate between", value1, value2, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("MerchantDate not between", value1, value2, "merchantDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeIsNull() {
|
|
|
+ addCriterion("MerchantType is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeIsNotNull() {
|
|
|
+ addCriterion("MerchantType is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeEqualTo(Integer value) {
|
|
|
+ addCriterion("MerchantType =", value, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("MerchantType <>", value, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("MerchantType >", value, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("MerchantType >=", value, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeLessThan(Integer value) {
|
|
|
+ addCriterion("MerchantType <", value, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("MerchantType <=", value, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeIn(List<Integer> values) {
|
|
|
+ addCriterion("MerchantType in", values, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("MerchantType not in", values, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("MerchantType between", value1, value2, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMerchantTypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("MerchantType not between", value1, value2, "merchantType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyIsNull() {
|
|
|
+ addCriterion("UserProperty is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyIsNotNull() {
|
|
|
+ addCriterion("UserProperty is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyEqualTo(Integer value) {
|
|
|
+ addCriterion("UserProperty =", value, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyNotEqualTo(Integer value) {
|
|
|
+ addCriterion("UserProperty <>", value, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyGreaterThan(Integer value) {
|
|
|
+ addCriterion("UserProperty >", value, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("UserProperty >=", value, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyLessThan(Integer value) {
|
|
|
+ addCriterion("UserProperty <", value, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("UserProperty <=", value, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyIn(List<Integer> values) {
|
|
|
+ addCriterion("UserProperty in", values, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyNotIn(List<Integer> values) {
|
|
|
+ addCriterion("UserProperty not in", values, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("UserProperty between", value1, value2, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserPropertyNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("UserProperty not between", value1, value2, "userProperty");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeIsNull() {
|
|
|
+ addCriterion("UserType is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeIsNotNull() {
|
|
|
+ addCriterion("UserType is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeEqualTo(Integer value) {
|
|
|
+ addCriterion("UserType =", value, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeNotEqualTo(Integer value) {
|
|
|
+ addCriterion("UserType <>", value, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeGreaterThan(Integer value) {
|
|
|
+ addCriterion("UserType >", value, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("UserType >=", value, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeLessThan(Integer value) {
|
|
|
+ addCriterion("UserType <", value, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("UserType <=", value, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeIn(List<Integer> values) {
|
|
|
+ addCriterion("UserType in", values, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeNotIn(List<Integer> values) {
|
|
|
+ addCriterion("UserType not in", values, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("UserType between", value1, value2, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserTypeNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("UserType not between", value1, value2, "userType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlIsNull() {
|
|
|
+ addCriterion("SignImgUrl is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlIsNotNull() {
|
|
|
+ addCriterion("SignImgUrl is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlEqualTo(String value) {
|
|
|
+ addCriterion("SignImgUrl =", value, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlNotEqualTo(String value) {
|
|
|
+ addCriterion("SignImgUrl <>", value, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlGreaterThan(String value) {
|
|
|
+ addCriterion("SignImgUrl >", value, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SignImgUrl >=", value, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlLessThan(String value) {
|
|
|
+ addCriterion("SignImgUrl <", value, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SignImgUrl <=", value, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlLike(String value) {
|
|
|
+ addCriterion("SignImgUrl like", value, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlNotLike(String value) {
|
|
|
+ addCriterion("SignImgUrl not like", value, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlIn(List<String> values) {
|
|
|
+ addCriterion("SignImgUrl in", values, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlNotIn(List<String> values) {
|
|
|
+ addCriterion("SignImgUrl not in", values, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlBetween(String value1, String value2) {
|
|
|
+ addCriterion("SignImgUrl between", value1, value2, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignImgUrlNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("SignImgUrl not between", value1, value2, "signImgUrl");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeIsNull() {
|
|
|
+ addCriterion("ReferenceQrCode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeIsNotNull() {
|
|
|
+ addCriterion("ReferenceQrCode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeEqualTo(String value) {
|
|
|
+ addCriterion("ReferenceQrCode =", value, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("ReferenceQrCode <>", value, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeGreaterThan(String value) {
|
|
|
+ addCriterion("ReferenceQrCode >", value, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("ReferenceQrCode >=", value, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeLessThan(String value) {
|
|
|
+ addCriterion("ReferenceQrCode <", value, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("ReferenceQrCode <=", value, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeLike(String value) {
|
|
|
+ addCriterion("ReferenceQrCode like", value, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeNotLike(String value) {
|
|
|
+ addCriterion("ReferenceQrCode not like", value, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeIn(List<String> values) {
|
|
|
+ addCriterion("ReferenceQrCode in", values, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("ReferenceQrCode not in", values, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("ReferenceQrCode between", value1, value2, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceQrCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("ReferenceQrCode not between", value1, value2, "referenceQrCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeIsNull() {
|
|
|
+ addCriterion("CardRecCode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeIsNotNull() {
|
|
|
+ addCriterion("CardRecCode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeEqualTo(String value) {
|
|
|
+ addCriterion("CardRecCode =", value, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("CardRecCode <>", value, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeGreaterThan(String value) {
|
|
|
+ addCriterion("CardRecCode >", value, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CardRecCode >=", value, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeLessThan(String value) {
|
|
|
+ addCriterion("CardRecCode <", value, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CardRecCode <=", value, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeLike(String value) {
|
|
|
+ addCriterion("CardRecCode like", value, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeNotLike(String value) {
|
|
|
+ addCriterion("CardRecCode not like", value, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeIn(List<String> values) {
|
|
|
+ addCriterion("CardRecCode in", values, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("CardRecCode not in", values, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("CardRecCode between", value1, value2, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardRecCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("CardRecCode not between", value1, value2, "cardRecCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdIsNull() {
|
|
|
+ addCriterion("ReferralUserId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdIsNotNull() {
|
|
|
+ addCriterion("ReferralUserId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdEqualTo(Integer value) {
|
|
|
+ addCriterion("ReferralUserId =", value, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdNotEqualTo(Integer value) {
|
|
|
+ addCriterion("ReferralUserId <>", value, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdGreaterThan(Integer value) {
|
|
|
+ addCriterion("ReferralUserId >", value, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("ReferralUserId >=", value, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdLessThan(Integer value) {
|
|
|
+ addCriterion("ReferralUserId <", value, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("ReferralUserId <=", value, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdIn(List<Integer> values) {
|
|
|
+ addCriterion("ReferralUserId in", values, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdNotIn(List<Integer> values) {
|
|
|
+ addCriterion("ReferralUserId not in", values, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("ReferralUserId between", value1, value2, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferralUserIdNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("ReferralUserId not between", value1, value2, "referralUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeIsNull() {
|
|
|
+ addCriterion("ReferenceCode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeIsNotNull() {
|
|
|
+ addCriterion("ReferenceCode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeEqualTo(String value) {
|
|
|
+ addCriterion("ReferenceCode =", value, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("ReferenceCode <>", value, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeGreaterThan(String value) {
|
|
|
+ addCriterion("ReferenceCode >", value, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("ReferenceCode >=", value, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeLessThan(String value) {
|
|
|
+ addCriterion("ReferenceCode <", value, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("ReferenceCode <=", value, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeLike(String value) {
|
|
|
+ addCriterion("ReferenceCode like", value, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeNotLike(String value) {
|
|
|
+ addCriterion("ReferenceCode not like", value, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeIn(List<String> values) {
|
|
|
+ addCriterion("ReferenceCode in", values, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("ReferenceCode not in", values, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("ReferenceCode between", value1, value2, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andReferenceCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("ReferenceCode not between", value1, value2, "referenceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameIsNull() {
|
|
|
+ addCriterion("SettleBankName is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameIsNotNull() {
|
|
|
+ addCriterion("SettleBankName is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankName =", value, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameNotEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankName <>", value, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameGreaterThan(String value) {
|
|
|
+ addCriterion("SettleBankName >", value, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankName >=", value, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameLessThan(String value) {
|
|
|
+ addCriterion("SettleBankName <", value, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankName <=", value, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameLike(String value) {
|
|
|
+ addCriterion("SettleBankName like", value, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameNotLike(String value) {
|
|
|
+ addCriterion("SettleBankName not like", value, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameIn(List<String> values) {
|
|
|
+ addCriterion("SettleBankName in", values, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameNotIn(List<String> values) {
|
|
|
+ addCriterion("SettleBankName not in", values, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("SettleBankName between", value1, value2, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("SettleBankName not between", value1, value2, "settleBankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoIsNull() {
|
|
|
+ addCriterion("SettleBankCardNo is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoIsNotNull() {
|
|
|
+ addCriterion("SettleBankCardNo is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankCardNo =", value, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoNotEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankCardNo <>", value, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoGreaterThan(String value) {
|
|
|
+ addCriterion("SettleBankCardNo >", value, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankCardNo >=", value, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoLessThan(String value) {
|
|
|
+ addCriterion("SettleBankCardNo <", value, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SettleBankCardNo <=", value, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoLike(String value) {
|
|
|
+ addCriterion("SettleBankCardNo like", value, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoNotLike(String value) {
|
|
|
+ addCriterion("SettleBankCardNo not like", value, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoIn(List<String> values) {
|
|
|
+ addCriterion("SettleBankCardNo in", values, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoNotIn(List<String> values) {
|
|
|
+ addCriterion("SettleBankCardNo not in", values, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoBetween(String value1, String value2) {
|
|
|
+ addCriterion("SettleBankCardNo between", value1, value2, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSettleBankCardNoNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("SettleBankCardNo not between", value1, value2, "settleBankCardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoIsNull() {
|
|
|
+ addCriterion("IdCardEndNo is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoIsNotNull() {
|
|
|
+ addCriterion("IdCardEndNo is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoEqualTo(String value) {
|
|
|
+ addCriterion("IdCardEndNo =", value, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoNotEqualTo(String value) {
|
|
|
+ addCriterion("IdCardEndNo <>", value, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoGreaterThan(String value) {
|
|
|
+ addCriterion("IdCardEndNo >", value, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("IdCardEndNo >=", value, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoLessThan(String value) {
|
|
|
+ addCriterion("IdCardEndNo <", value, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("IdCardEndNo <=", value, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoLike(String value) {
|
|
|
+ addCriterion("IdCardEndNo like", value, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoNotLike(String value) {
|
|
|
+ addCriterion("IdCardEndNo not like", value, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoIn(List<String> values) {
|
|
|
+ addCriterion("IdCardEndNo in", values, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoNotIn(List<String> values) {
|
|
|
+ addCriterion("IdCardEndNo not in", values, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoBetween(String value1, String value2) {
|
|
|
+ addCriterion("IdCardEndNo between", value1, value2, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdCardEndNoNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("IdCardEndNo not between", value1, value2, "idCardEndNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserIsNull() {
|
|
|
+ addCriterion("IsNewUser is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserIsNotNull() {
|
|
|
+ addCriterion("IsNewUser is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserEqualTo(Boolean value) {
|
|
|
+ addCriterion("IsNewUser =", value, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserNotEqualTo(Boolean value) {
|
|
|
+ addCriterion("IsNewUser <>", value, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserGreaterThan(Boolean value) {
|
|
|
+ addCriterion("IsNewUser >", value, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserGreaterThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("IsNewUser >=", value, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserLessThan(Boolean value) {
|
|
|
+ addCriterion("IsNewUser <", value, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserLessThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("IsNewUser <=", value, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserIn(List<Boolean> values) {
|
|
|
+ addCriterion("IsNewUser in", values, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserNotIn(List<Boolean> values) {
|
|
|
+ addCriterion("IsNewUser not in", values, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("IsNewUser between", value1, value2, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsNewUserNotBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("IsNewUser not between", value1, value2, "isNewUser");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdIsNull() {
|
|
|
+ addCriterion("AlipayUserId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdIsNotNull() {
|
|
|
+ addCriterion("AlipayUserId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdEqualTo(String value) {
|
|
|
+ addCriterion("AlipayUserId =", value, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdNotEqualTo(String value) {
|
|
|
+ addCriterion("AlipayUserId <>", value, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdGreaterThan(String value) {
|
|
|
+ addCriterion("AlipayUserId >", value, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("AlipayUserId >=", value, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdLessThan(String value) {
|
|
|
+ addCriterion("AlipayUserId <", value, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("AlipayUserId <=", value, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdLike(String value) {
|
|
|
+ addCriterion("AlipayUserId like", value, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdNotLike(String value) {
|
|
|
+ addCriterion("AlipayUserId not like", value, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdIn(List<String> values) {
|
|
|
+ addCriterion("AlipayUserId in", values, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdNotIn(List<String> values) {
|
|
|
+ addCriterion("AlipayUserId not in", values, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("AlipayUserId between", value1, value2, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAlipayUserIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("AlipayUserId not between", value1, value2, "alipayUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdIsNull() {
|
|
|
+ addCriterion("OpenId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdIsNotNull() {
|
|
|
+ addCriterion("OpenId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdEqualTo(String value) {
|
|
|
+ addCriterion("OpenId =", value, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdNotEqualTo(String value) {
|
|
|
+ addCriterion("OpenId <>", value, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdGreaterThan(String value) {
|
|
|
+ addCriterion("OpenId >", value, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("OpenId >=", value, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdLessThan(String value) {
|
|
|
+ addCriterion("OpenId <", value, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("OpenId <=", value, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdLike(String value) {
|
|
|
+ addCriterion("OpenId like", value, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdNotLike(String value) {
|
|
|
+ addCriterion("OpenId not like", value, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdIn(List<String> values) {
|
|
|
+ addCriterion("OpenId in", values, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdNotIn(List<String> values) {
|
|
|
+ addCriterion("OpenId not in", values, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("OpenId between", value1, value2, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOpenIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("OpenId not between", value1, value2, "openId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsIsNull() {
|
|
|
+ addCriterion("CarIds is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsIsNotNull() {
|
|
|
+ addCriterion("CarIds is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsEqualTo(String value) {
|
|
|
+ addCriterion("CarIds =", value, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsNotEqualTo(String value) {
|
|
|
+ addCriterion("CarIds <>", value, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsGreaterThan(String value) {
|
|
|
+ addCriterion("CarIds >", value, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CarIds >=", value, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsLessThan(String value) {
|
|
|
+ addCriterion("CarIds <", value, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CarIds <=", value, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsLike(String value) {
|
|
|
+ addCriterion("CarIds like", value, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsNotLike(String value) {
|
|
|
+ addCriterion("CarIds not like", value, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsIn(List<String> values) {
|
|
|
+ addCriterion("CarIds in", values, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsNotIn(List<String> values) {
|
|
|
+ addCriterion("CarIds not in", values, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsBetween(String value1, String value2) {
|
|
|
+ addCriterion("CarIds between", value1, value2, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCarIdsNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("CarIds not between", value1, value2, "carIds");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdIsNull() {
|
|
|
+ addCriterion("PayPwd is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdIsNotNull() {
|
|
|
+ addCriterion("PayPwd is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdEqualTo(String value) {
|
|
|
+ addCriterion("PayPwd =", value, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdNotEqualTo(String value) {
|
|
|
+ addCriterion("PayPwd <>", value, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdGreaterThan(String value) {
|
|
|
+ addCriterion("PayPwd >", value, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PayPwd >=", value, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdLessThan(String value) {
|
|
|
+ addCriterion("PayPwd <", value, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PayPwd <=", value, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdLike(String value) {
|
|
|
+ addCriterion("PayPwd like", value, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdNotLike(String value) {
|
|
|
+ addCriterion("PayPwd not like", value, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdIn(List<String> values) {
|
|
|
+ addCriterion("PayPwd in", values, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdNotIn(List<String> values) {
|
|
|
+ addCriterion("PayPwd not in", values, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdBetween(String value1, String value2) {
|
|
|
+ addCriterion("PayPwd between", value1, value2, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayPwdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PayPwd not between", value1, value2, "payPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdIsNull() {
|
|
|
+ addCriterion("LoginPwd is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdIsNotNull() {
|
|
|
+ addCriterion("LoginPwd is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdEqualTo(String value) {
|
|
|
+ addCriterion("LoginPwd =", value, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdNotEqualTo(String value) {
|
|
|
+ addCriterion("LoginPwd <>", value, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdGreaterThan(String value) {
|
|
|
+ addCriterion("LoginPwd >", value, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("LoginPwd >=", value, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdLessThan(String value) {
|
|
|
+ addCriterion("LoginPwd <", value, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("LoginPwd <=", value, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdLike(String value) {
|
|
|
+ addCriterion("LoginPwd like", value, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdNotLike(String value) {
|
|
|
+ addCriterion("LoginPwd not like", value, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdIn(List<String> values) {
|
|
|
+ addCriterion("LoginPwd in", values, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdNotIn(List<String> values) {
|
|
|
+ addCriterion("LoginPwd not in", values, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdBetween(String value1, String value2) {
|
|
|
+ addCriterion("LoginPwd between", value1, value2, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLoginPwdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("LoginPwd not between", value1, value2, "loginPwd");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsIsNull() {
|
|
|
+ addCriterion("Tags is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsIsNotNull() {
|
|
|
+ addCriterion("Tags is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsEqualTo(String value) {
|
|
|
+ addCriterion("Tags =", value, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsNotEqualTo(String value) {
|
|
|
+ addCriterion("Tags <>", value, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsGreaterThan(String value) {
|
|
|
+ addCriterion("Tags >", value, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("Tags >=", value, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsLessThan(String value) {
|
|
|
+ addCriterion("Tags <", value, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("Tags <=", value, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsLike(String value) {
|
|
|
+ addCriterion("Tags like", value, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsNotLike(String value) {
|
|
|
+ addCriterion("Tags not like", value, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsIn(List<String> values) {
|
|
|
+ addCriterion("Tags in", values, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsNotIn(List<String> values) {
|
|
|
+ addCriterion("Tags not in", values, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsBetween(String value1, String value2) {
|
|
|
+ addCriterion("Tags between", value1, value2, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andTagsNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("Tags not between", value1, value2, "tags");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdIsNull() {
|
|
|
+ addCriterion("GroupId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdIsNotNull() {
|
|
|
+ addCriterion("GroupId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdEqualTo(String value) {
|
|
|
+ addCriterion("GroupId =", value, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdNotEqualTo(String value) {
|
|
|
+ addCriterion("GroupId <>", value, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdGreaterThan(String value) {
|
|
|
+ addCriterion("GroupId >", value, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("GroupId >=", value, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdLessThan(String value) {
|
|
|
+ addCriterion("GroupId <", value, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("GroupId <=", value, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdLike(String value) {
|
|
|
+ addCriterion("GroupId like", value, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdNotLike(String value) {
|
|
|
+ addCriterion("GroupId not like", value, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdIn(List<String> values) {
|
|
|
+ addCriterion("GroupId in", values, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdNotIn(List<String> values) {
|
|
|
+ addCriterion("GroupId not in", values, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("GroupId between", value1, value2, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andGroupIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("GroupId not between", value1, value2, "groupId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileIsNull() {
|
|
|
+ addCriterion("Mobile is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileIsNotNull() {
|
|
|
+ addCriterion("Mobile is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileEqualTo(String value) {
|
|
|
+ addCriterion("Mobile =", value, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNotEqualTo(String value) {
|
|
|
+ addCriterion("Mobile <>", value, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileGreaterThan(String value) {
|
|
|
+ addCriterion("Mobile >", value, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("Mobile >=", value, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileLessThan(String value) {
|
|
|
+ addCriterion("Mobile <", value, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("Mobile <=", value, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileLike(String value) {
|
|
|
+ addCriterion("Mobile like", value, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNotLike(String value) {
|
|
|
+ addCriterion("Mobile not like", value, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileIn(List<String> values) {
|
|
|
+ addCriterion("Mobile in", values, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNotIn(List<String> values) {
|
|
|
+ addCriterion("Mobile not in", values, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileBetween(String value1, String value2) {
|
|
|
+ addCriterion("Mobile between", value1, value2, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("Mobile not between", value1, value2, "mobile");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoIsNull() {
|
|
|
+ addCriterion("CardNo is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoIsNotNull() {
|
|
|
+ addCriterion("CardNo is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoEqualTo(String value) {
|
|
|
+ addCriterion("CardNo =", value, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoNotEqualTo(String value) {
|
|
|
+ addCriterion("CardNo <>", value, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoGreaterThan(String value) {
|
|
|
+ addCriterion("CardNo >", value, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CardNo >=", value, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoLessThan(String value) {
|
|
|
+ addCriterion("CardNo <", value, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CardNo <=", value, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoLike(String value) {
|
|
|
+ addCriterion("CardNo like", value, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoNotLike(String value) {
|
|
|
+ addCriterion("CardNo not like", value, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoIn(List<String> values) {
|
|
|
+ addCriterion("CardNo in", values, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoNotIn(List<String> values) {
|
|
|
+ addCriterion("CardNo not in", values, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoBetween(String value1, String value2) {
|
|
|
+ addCriterion("CardNo between", value1, value2, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCardNoNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("CardNo not between", value1, value2, "cardNo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelIsNull() {
|
|
|
+ addCriterion("UserLevel is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelIsNotNull() {
|
|
|
+ addCriterion("UserLevel is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelEqualTo(Integer value) {
|
|
|
+ addCriterion("UserLevel =", value, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelNotEqualTo(Integer value) {
|
|
|
+ addCriterion("UserLevel <>", value, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelGreaterThan(Integer value) {
|
|
|
+ addCriterion("UserLevel >", value, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("UserLevel >=", value, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelLessThan(Integer value) {
|
|
|
+ addCriterion("UserLevel <", value, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("UserLevel <=", value, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelIn(List<Integer> values) {
|
|
|
+ addCriterion("UserLevel in", values, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelNotIn(List<Integer> values) {
|
|
|
+ addCriterion("UserLevel not in", values, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("UserLevel between", value1, value2, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUserLevelNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("UserLevel not between", value1, value2, "userLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdIsNull() {
|
|
|
+ addCriterion("ParentUserId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdIsNotNull() {
|
|
|
+ addCriterion("ParentUserId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdEqualTo(Integer value) {
|
|
|
+ addCriterion("ParentUserId =", value, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdNotEqualTo(Integer value) {
|
|
|
+ addCriterion("ParentUserId <>", value, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdGreaterThan(Integer value) {
|
|
|
+ addCriterion("ParentUserId >", value, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("ParentUserId >=", value, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdLessThan(Integer value) {
|
|
|
+ addCriterion("ParentUserId <", value, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("ParentUserId <=", value, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdIn(List<Integer> values) {
|
|
|
+ addCriterion("ParentUserId in", values, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdNotIn(List<Integer> values) {
|
|
|
+ addCriterion("ParentUserId not in", values, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("ParentUserId between", value1, value2, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andParentUserIdNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("ParentUserId not between", value1, value2, "parentUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoIsNull() {
|
|
|
+ addCriterion("HeadPhoto is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoIsNotNull() {
|
|
|
+ addCriterion("HeadPhoto is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoEqualTo(String value) {
|
|
|
+ addCriterion("HeadPhoto =", value, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoNotEqualTo(String value) {
|
|
|
+ addCriterion("HeadPhoto <>", value, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoGreaterThan(String value) {
|
|
|
+ addCriterion("HeadPhoto >", value, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("HeadPhoto >=", value, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoLessThan(String value) {
|
|
|
+ addCriterion("HeadPhoto <", value, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("HeadPhoto <=", value, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoLike(String value) {
|
|
|
+ addCriterion("HeadPhoto like", value, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoNotLike(String value) {
|
|
|
+ addCriterion("HeadPhoto not like", value, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoIn(List<String> values) {
|
|
|
+ addCriterion("HeadPhoto in", values, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoNotIn(List<String> values) {
|
|
|
+ addCriterion("HeadPhoto not in", values, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoBetween(String value1, String value2) {
|
|
|
+ addCriterion("HeadPhoto between", value1, value2, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHeadPhotoNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("HeadPhoto not between", value1, value2, "headPhoto");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressIsNull() {
|
|
|
+ addCriterion("Address is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressIsNotNull() {
|
|
|
+ addCriterion("Address is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressEqualTo(String value) {
|
|
|
+ addCriterion("Address =", value, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressNotEqualTo(String value) {
|
|
|
+ addCriterion("Address <>", value, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressGreaterThan(String value) {
|
|
|
+ addCriterion("Address >", value, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("Address >=", value, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLessThan(String value) {
|
|
|
+ addCriterion("Address <", value, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("Address <=", value, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLike(String value) {
|
|
|
+ addCriterion("Address like", value, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressNotLike(String value) {
|
|
|
+ addCriterion("Address not like", value, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressIn(List<String> values) {
|
|
|
+ addCriterion("Address in", values, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressNotIn(List<String> values) {
|
|
|
+ addCriterion("Address not in", values, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressBetween(String value1, String value2) {
|
|
|
+ addCriterion("Address between", value1, value2, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("Address not between", value1, value2, "address");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasIsNull() {
|
|
|
+ addCriterion("Areas is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasIsNotNull() {
|
|
|
+ addCriterion("Areas is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasEqualTo(String value) {
|
|
|
+ addCriterion("Areas =", value, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasNotEqualTo(String value) {
|
|
|
+ addCriterion("Areas <>", value, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasGreaterThan(String value) {
|
|
|
+ addCriterion("Areas >", value, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("Areas >=", value, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasLessThan(String value) {
|
|
|
+ addCriterion("Areas <", value, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("Areas <=", value, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasLike(String value) {
|
|
|
+ addCriterion("Areas like", value, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasNotLike(String value) {
|
|
|
+ addCriterion("Areas not like", value, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasIn(List<String> values) {
|
|
|
+ addCriterion("Areas in", values, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasNotIn(List<String> values) {
|
|
|
+ addCriterion("Areas not in", values, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasBetween(String value1, String value2) {
|
|
|
+ addCriterion("Areas between", value1, value2, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAreasNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("Areas not between", value1, value2, "areas");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdIsNull() {
|
|
|
+ addCriterion("CertId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdIsNotNull() {
|
|
|
+ addCriterion("CertId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdEqualTo(String value) {
|
|
|
+ addCriterion("CertId =", value, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdNotEqualTo(String value) {
|
|
|
+ addCriterion("CertId <>", value, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdGreaterThan(String value) {
|
|
|
+ addCriterion("CertId >", value, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CertId >=", value, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdLessThan(String value) {
|
|
|
+ addCriterion("CertId <", value, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CertId <=", value, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdLike(String value) {
|
|
|
+ addCriterion("CertId like", value, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdNotLike(String value) {
|
|
|
+ addCriterion("CertId not like", value, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdIn(List<String> values) {
|
|
|
+ addCriterion("CertId in", values, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdNotIn(List<String> values) {
|
|
|
+ addCriterion("CertId not in", values, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("CertId between", value1, value2, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCertIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("CertId not between", value1, value2, "certId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexIsNull() {
|
|
|
+ addCriterion("Sex is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexIsNotNull() {
|
|
|
+ addCriterion("Sex is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexEqualTo(Integer value) {
|
|
|
+ addCriterion("Sex =", value, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexNotEqualTo(Integer value) {
|
|
|
+ addCriterion("Sex <>", value, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexGreaterThan(Integer value) {
|
|
|
+ addCriterion("Sex >", value, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("Sex >=", value, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexLessThan(Integer value) {
|
|
|
+ addCriterion("Sex <", value, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("Sex <=", value, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexIn(List<Integer> values) {
|
|
|
+ addCriterion("Sex in", values, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexNotIn(List<Integer> values) {
|
|
|
+ addCriterion("Sex not in", values, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("Sex between", value1, value2, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSexNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("Sex not between", value1, value2, "sex");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameIsNull() {
|
|
|
+ addCriterion("RealName is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameIsNotNull() {
|
|
|
+ addCriterion("RealName is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameEqualTo(String value) {
|
|
|
+ addCriterion("RealName =", value, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameNotEqualTo(String value) {
|
|
|
+ addCriterion("RealName <>", value, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameGreaterThan(String value) {
|
|
|
+ addCriterion("RealName >", value, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("RealName >=", value, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameLessThan(String value) {
|
|
|
+ addCriterion("RealName <", value, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("RealName <=", value, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameLike(String value) {
|
|
|
+ addCriterion("RealName like", value, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameNotLike(String value) {
|
|
|
+ addCriterion("RealName not like", value, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameIn(List<String> values) {
|
|
|
+ addCriterion("RealName in", values, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameNotIn(List<String> values) {
|
|
|
+ addCriterion("RealName not in", values, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("RealName between", value1, value2, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRealNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("RealName not between", value1, value2, "realName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameIsNull() {
|
|
|
+ addCriterion("NickName is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameIsNotNull() {
|
|
|
+ addCriterion("NickName is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameEqualTo(String value) {
|
|
|
+ addCriterion("NickName =", value, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameNotEqualTo(String value) {
|
|
|
+ addCriterion("NickName <>", value, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameGreaterThan(String value) {
|
|
|
+ addCriterion("NickName >", value, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("NickName >=", value, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameLessThan(String value) {
|
|
|
+ addCriterion("NickName <", value, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("NickName <=", value, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameLike(String value) {
|
|
|
+ addCriterion("NickName like", value, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameNotLike(String value) {
|
|
|
+ addCriterion("NickName not like", value, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameIn(List<String> values) {
|
|
|
+ addCriterion("NickName in", values, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameNotIn(List<String> values) {
|
|
|
+ addCriterion("NickName not in", values, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("NickName between", value1, value2, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andNickNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("NickName not between", value1, value2, "nickName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusIsNull() {
|
|
|
+ addCriterion("CashStatus is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusIsNotNull() {
|
|
|
+ addCriterion("CashStatus is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("CashStatus =", value, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("CashStatus <>", value, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("CashStatus >", value, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("CashStatus >=", value, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusLessThan(Integer value) {
|
|
|
+ addCriterion("CashStatus <", value, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("CashStatus <=", value, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("CashStatus in", values, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("CashStatus not in", values, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("CashStatus between", value1, value2, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("CashStatus not between", value1, value2, "cashStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteIsNull() {
|
|
|
+ addCriterion("CashNote is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteIsNotNull() {
|
|
|
+ addCriterion("CashNote is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteEqualTo(String value) {
|
|
|
+ addCriterion("CashNote =", value, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteNotEqualTo(String value) {
|
|
|
+ addCriterion("CashNote <>", value, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteGreaterThan(String value) {
|
|
|
+ addCriterion("CashNote >", value, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CashNote >=", value, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteLessThan(String value) {
|
|
|
+ addCriterion("CashNote <", value, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("CashNote <=", value, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteLike(String value) {
|
|
|
+ addCriterion("CashNote like", value, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteNotLike(String value) {
|
|
|
+ addCriterion("CashNote not like", value, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteIn(List<String> values) {
|
|
|
+ addCriterion("CashNote in", values, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteNotIn(List<String> values) {
|
|
|
+ addCriterion("CashNote not in", values, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteBetween(String value1, String value2) {
|
|
|
+ addCriterion("CashNote between", value1, value2, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCashNoteNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("CashNote not between", value1, value2, "cashNote");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeIsNull() {
|
|
|
+ addCriterion("ThisMonthTrade is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeIsNotNull() {
|
|
|
+ addCriterion("ThisMonthTrade is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ThisMonthTrade =", value, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeNotEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ThisMonthTrade <>", value, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeGreaterThan(BigDecimal value) {
|
|
|
+ addCriterion("ThisMonthTrade >", value, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeGreaterThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ThisMonthTrade >=", value, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeLessThan(BigDecimal value) {
|
|
|
+ addCriterion("ThisMonthTrade <", value, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeLessThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ThisMonthTrade <=", value, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("ThisMonthTrade in", values, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeNotIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("ThisMonthTrade not in", values, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("ThisMonthTrade between", value1, value2, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthTradeNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("ThisMonthTrade not between", value1, value2, "thisMonthTrade");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelIsNull() {
|
|
|
+ addCriterion("LeaderLevel is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelIsNotNull() {
|
|
|
+ addCriterion("LeaderLevel is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelEqualTo(Integer value) {
|
|
|
+ addCriterion("LeaderLevel =", value, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelNotEqualTo(Integer value) {
|
|
|
+ addCriterion("LeaderLevel <>", value, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelGreaterThan(Integer value) {
|
|
|
+ addCriterion("LeaderLevel >", value, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("LeaderLevel >=", value, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelLessThan(Integer value) {
|
|
|
+ addCriterion("LeaderLevel <", value, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("LeaderLevel <=", value, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelIn(List<Integer> values) {
|
|
|
+ addCriterion("LeaderLevel in", values, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelNotIn(List<Integer> values) {
|
|
|
+ addCriterion("LeaderLevel not in", values, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("LeaderLevel between", value1, value2, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andLeaderLevelNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("LeaderLevel not between", value1, value2, "leaderLevel");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagIsNull() {
|
|
|
+ addCriterion("BusinessFlag is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagIsNotNull() {
|
|
|
+ addCriterion("BusinessFlag is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagEqualTo(Integer value) {
|
|
|
+ addCriterion("BusinessFlag =", value, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagNotEqualTo(Integer value) {
|
|
|
+ addCriterion("BusinessFlag <>", value, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagGreaterThan(Integer value) {
|
|
|
+ addCriterion("BusinessFlag >", value, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("BusinessFlag >=", value, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagLessThan(Integer value) {
|
|
|
+ addCriterion("BusinessFlag <", value, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("BusinessFlag <=", value, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagIn(List<Integer> values) {
|
|
|
+ addCriterion("BusinessFlag in", values, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagNotIn(List<Integer> values) {
|
|
|
+ addCriterion("BusinessFlag not in", values, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("BusinessFlag between", value1, value2, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessFlagNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("BusinessFlag not between", value1, value2, "businessFlag");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountIsNull() {
|
|
|
+ addCriterion("ValidAmount is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountIsNotNull() {
|
|
|
+ addCriterion("ValidAmount is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ValidAmount =", value, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountNotEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ValidAmount <>", value, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountGreaterThan(BigDecimal value) {
|
|
|
+ addCriterion("ValidAmount >", value, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountGreaterThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ValidAmount >=", value, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountLessThan(BigDecimal value) {
|
|
|
+ addCriterion("ValidAmount <", value, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountLessThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("ValidAmount <=", value, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("ValidAmount in", values, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountNotIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("ValidAmount not in", values, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("ValidAmount between", value1, value2, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andValidAmountNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("ValidAmount not between", value1, value2, "validAmount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeIsNull() {
|
|
|
+ addCriterion("DeviceType is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeIsNotNull() {
|
|
|
+ addCriterion("DeviceType is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeEqualTo(String value) {
|
|
|
+ addCriterion("DeviceType =", value, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeNotEqualTo(String value) {
|
|
|
+ addCriterion("DeviceType <>", value, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeGreaterThan(String value) {
|
|
|
+ addCriterion("DeviceType >", value, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("DeviceType >=", value, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeLessThan(String value) {
|
|
|
+ addCriterion("DeviceType <", value, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("DeviceType <=", value, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeLike(String value) {
|
|
|
+ addCriterion("DeviceType like", value, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeNotLike(String value) {
|
|
|
+ addCriterion("DeviceType not like", value, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeIn(List<String> values) {
|
|
|
+ addCriterion("DeviceType in", values, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeNotIn(List<String> values) {
|
|
|
+ addCriterion("DeviceType not in", values, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeBetween(String value1, String value2) {
|
|
|
+ addCriterion("DeviceType between", value1, value2, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeviceTypeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("DeviceType not between", value1, value2, "deviceType");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateIsNull() {
|
|
|
+ addCriterion("HelpProfitAgreeDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateIsNotNull() {
|
|
|
+ addCriterion("HelpProfitAgreeDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateEqualTo(Date value) {
|
|
|
+ addCriterion("HelpProfitAgreeDate =", value, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("HelpProfitAgreeDate <>", value, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateGreaterThan(Date value) {
|
|
|
+ addCriterion("HelpProfitAgreeDate >", value, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("HelpProfitAgreeDate >=", value, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateLessThan(Date value) {
|
|
|
+ addCriterion("HelpProfitAgreeDate <", value, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("HelpProfitAgreeDate <=", value, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateIn(List<Date> values) {
|
|
|
+ addCriterion("HelpProfitAgreeDate in", values, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("HelpProfitAgreeDate not in", values, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("HelpProfitAgreeDate between", value1, value2, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("HelpProfitAgreeDate not between", value1, value2, "helpProfitAgreeDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeIsNull() {
|
|
|
+ addCriterion("HelpProfitAgree is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeIsNotNull() {
|
|
|
+ addCriterion("HelpProfitAgree is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeEqualTo(Boolean value) {
|
|
|
+ addCriterion("HelpProfitAgree =", value, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeNotEqualTo(Boolean value) {
|
|
|
+ addCriterion("HelpProfitAgree <>", value, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeGreaterThan(Boolean value) {
|
|
|
+ addCriterion("HelpProfitAgree >", value, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeGreaterThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("HelpProfitAgree >=", value, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeLessThan(Boolean value) {
|
|
|
+ addCriterion("HelpProfitAgree <", value, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeLessThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("HelpProfitAgree <=", value, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeIn(List<Boolean> values) {
|
|
|
+ addCriterion("HelpProfitAgree in", values, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeNotIn(List<Boolean> values) {
|
|
|
+ addCriterion("HelpProfitAgree not in", values, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("HelpProfitAgree between", value1, value2, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andHelpProfitAgreeNotBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("HelpProfitAgree not between", value1, value2, "helpProfitAgree");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicIsNull() {
|
|
|
+ addCriterion("SignPic is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicIsNotNull() {
|
|
|
+ addCriterion("SignPic is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicEqualTo(String value) {
|
|
|
+ addCriterion("SignPic =", value, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicNotEqualTo(String value) {
|
|
|
+ addCriterion("SignPic <>", value, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicGreaterThan(String value) {
|
|
|
+ addCriterion("SignPic >", value, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SignPic >=", value, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicLessThan(String value) {
|
|
|
+ addCriterion("SignPic <", value, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("SignPic <=", value, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicLike(String value) {
|
|
|
+ addCriterion("SignPic like", value, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicNotLike(String value) {
|
|
|
+ addCriterion("SignPic not like", value, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicIn(List<String> values) {
|
|
|
+ addCriterion("SignPic in", values, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicNotIn(List<String> values) {
|
|
|
+ addCriterion("SignPic not in", values, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicBetween(String value1, String value2) {
|
|
|
+ addCriterion("SignPic between", value1, value2, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignPicNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("SignPic not between", value1, value2, "signPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateIsNull() {
|
|
|
+ addCriterion("SignDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateIsNotNull() {
|
|
|
+ addCriterion("SignDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateEqualTo(Date value) {
|
|
|
+ addCriterion("SignDate =", value, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("SignDate <>", value, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateGreaterThan(Date value) {
|
|
|
+ addCriterion("SignDate >", value, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("SignDate >=", value, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateLessThan(Date value) {
|
|
|
+ addCriterion("SignDate <", value, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("SignDate <=", value, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateIn(List<Date> values) {
|
|
|
+ addCriterion("SignDate in", values, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("SignDate not in", values, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("SignDate between", value1, value2, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSignDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("SignDate not between", value1, value2, "signDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignIsNull() {
|
|
|
+ addCriterion("IsSign is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignIsNotNull() {
|
|
|
+ addCriterion("IsSign is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignEqualTo(Boolean value) {
|
|
|
+ addCriterion("IsSign =", value, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignNotEqualTo(Boolean value) {
|
|
|
+ addCriterion("IsSign <>", value, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignGreaterThan(Boolean value) {
|
|
|
+ addCriterion("IsSign >", value, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignGreaterThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("IsSign >=", value, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignLessThan(Boolean value) {
|
|
|
+ addCriterion("IsSign <", value, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignLessThanOrEqualTo(Boolean value) {
|
|
|
+ addCriterion("IsSign <=", value, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignIn(List<Boolean> values) {
|
|
|
+ addCriterion("IsSign in", values, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignNotIn(List<Boolean> values) {
|
|
|
+ addCriterion("IsSign not in", values, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("IsSign between", value1, value2, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsSignNotBetween(Boolean value1, Boolean value2) {
|
|
|
+ addCriterion("IsSign not between", value1, value2, "isSign");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateIsNull() {
|
|
|
+ addCriterion("CreateStoreDate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateIsNotNull() {
|
|
|
+ addCriterion("CreateStoreDate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateEqualTo(Date value) {
|
|
|
+ addCriterion("CreateStoreDate =", value, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("CreateStoreDate <>", value, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateGreaterThan(Date value) {
|
|
|
+ addCriterion("CreateStoreDate >", value, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CreateStoreDate >=", value, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateLessThan(Date value) {
|
|
|
+ addCriterion("CreateStoreDate <", value, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("CreateStoreDate <=", value, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateIn(List<Date> values) {
|
|
|
+ addCriterion("CreateStoreDate in", values, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("CreateStoreDate not in", values, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CreateStoreDate between", value1, value2, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateStoreDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("CreateStoreDate not between", value1, value2, "createStoreDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockIsNull() {
|
|
|
+ addCriterion("StoreStock is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockIsNotNull() {
|
|
|
+ addCriterion("StoreStock is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockEqualTo(Integer value) {
|
|
|
+ addCriterion("StoreStock =", value, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockNotEqualTo(Integer value) {
|
|
|
+ addCriterion("StoreStock <>", value, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockGreaterThan(Integer value) {
|
|
|
+ addCriterion("StoreStock >", value, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("StoreStock >=", value, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockLessThan(Integer value) {
|
|
|
+ addCriterion("StoreStock <", value, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("StoreStock <=", value, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockIn(List<Integer> values) {
|
|
|
+ addCriterion("StoreStock in", values, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockNotIn(List<Integer> values) {
|
|
|
+ addCriterion("StoreStock not in", values, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("StoreStock between", value1, value2, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andStoreStockNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("StoreStock not between", value1, value2, "storeStock");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendIsNull() {
|
|
|
+ addCriterion("ThisMonthSend is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendIsNotNull() {
|
|
|
+ addCriterion("ThisMonthSend is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendEqualTo(Integer value) {
|
|
|
+ addCriterion("ThisMonthSend =", value, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendNotEqualTo(Integer value) {
|
|
|
+ addCriterion("ThisMonthSend <>", value, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendGreaterThan(Integer value) {
|
|
|
+ addCriterion("ThisMonthSend >", value, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("ThisMonthSend >=", value, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendLessThan(Integer value) {
|
|
|
+ addCriterion("ThisMonthSend <", value, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("ThisMonthSend <=", value, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendIn(List<Integer> values) {
|
|
|
+ addCriterion("ThisMonthSend in", values, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendNotIn(List<Integer> values) {
|
|
|
+ addCriterion("ThisMonthSend not in", values, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("ThisMonthSend between", value1, value2, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andThisMonthSendNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("ThisMonthSend not between", value1, value2, "thisMonthSend");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoIsNull() {
|
|
|
+ addCriterion("BusinessLogo is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoIsNotNull() {
|
|
|
+ addCriterion("BusinessLogo is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoEqualTo(String value) {
|
|
|
+ addCriterion("BusinessLogo =", value, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoNotEqualTo(String value) {
|
|
|
+ addCriterion("BusinessLogo <>", value, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoGreaterThan(String value) {
|
|
|
+ addCriterion("BusinessLogo >", value, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("BusinessLogo >=", value, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoLessThan(String value) {
|
|
|
+ addCriterion("BusinessLogo <", value, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("BusinessLogo <=", value, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoLike(String value) {
|
|
|
+ addCriterion("BusinessLogo like", value, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoNotLike(String value) {
|
|
|
+ addCriterion("BusinessLogo not like", value, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoIn(List<String> values) {
|
|
|
+ addCriterion("BusinessLogo in", values, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoNotIn(List<String> values) {
|
|
|
+ addCriterion("BusinessLogo not in", values, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoBetween(String value1, String value2) {
|
|
|
+ addCriterion("BusinessLogo between", value1, value2, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessLogoNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("BusinessLogo not between", value1, value2, "businessLogo");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameIsNull() {
|
|
|
+ addCriterion("BusinessName is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameIsNotNull() {
|
|
|
+ addCriterion("BusinessName is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameEqualTo(String value) {
|
|
|
+ addCriterion("BusinessName =", value, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameNotEqualTo(String value) {
|
|
|
+ addCriterion("BusinessName <>", value, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameGreaterThan(String value) {
|
|
|
+ addCriterion("BusinessName >", value, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("BusinessName >=", value, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameLessThan(String value) {
|
|
|
+ addCriterion("BusinessName <", value, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("BusinessName <=", value, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameLike(String value) {
|
|
|
+ addCriterion("BusinessName like", value, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameNotLike(String value) {
|
|
|
+ addCriterion("BusinessName not like", value, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameIn(List<String> values) {
|
|
|
+ addCriterion("BusinessName in", values, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameNotIn(List<String> values) {
|
|
|
+ addCriterion("BusinessName not in", values, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("BusinessName between", value1, value2, "businessName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBusinessNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("BusinessName not between", value1, value2, "businessName");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|