|
|
@@ -0,0 +1,673 @@
|
|
|
+package com.zheng.pay.dao.model;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class PayInOrderDetailExample implements Serializable {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ private Integer limit;
|
|
|
+
|
|
|
+ private Integer offset;
|
|
|
+
|
|
|
+ public PayInOrderDetailExample() {
|
|
|
+ oredCriteria = new ArrayList<Criteria>();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderByClause(String orderByClause) {
|
|
|
+ this.orderByClause = orderByClause;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrderByClause() {
|
|
|
+ return orderByClause;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDistinct(boolean distinct) {
|
|
|
+ this.distinct = distinct;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isDistinct() {
|
|
|
+ return distinct;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Criteria> getOredCriteria() {
|
|
|
+ return oredCriteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void or(Criteria criteria) {
|
|
|
+ oredCriteria.add(criteria);
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria or() {
|
|
|
+ Criteria criteria = createCriteriaInternal();
|
|
|
+ oredCriteria.add(criteria);
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria createCriteria() {
|
|
|
+ Criteria criteria = createCriteriaInternal();
|
|
|
+ if (oredCriteria.size() == 0) {
|
|
|
+ oredCriteria.add(criteria);
|
|
|
+ }
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ protected Criteria createCriteriaInternal() {
|
|
|
+ Criteria criteria = new Criteria();
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void clear() {
|
|
|
+ oredCriteria.clear();
|
|
|
+ orderByClause = null;
|
|
|
+ distinct = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLimit(Integer limit) {
|
|
|
+ this.limit = limit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLimit() {
|
|
|
+ return limit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOffset(Integer offset) {
|
|
|
+ this.offset = offset;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getOffset() {
|
|
|
+ return offset;
|
|
|
+ }
|
|
|
+
|
|
|
+ protected abstract static class GeneratedCriteria implements Serializable {
|
|
|
+ protected List<Criterion> criteria;
|
|
|
+
|
|
|
+ protected GeneratedCriteria() {
|
|
|
+ super();
|
|
|
+ criteria = new ArrayList<Criterion>();
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isValid() {
|
|
|
+ return criteria.size() > 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Criterion> getAllCriteria() {
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Criterion> getCriteria() {
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ protected void addCriterion(String condition) {
|
|
|
+ if (condition == null) {
|
|
|
+ throw new RuntimeException("Value for condition cannot be null");
|
|
|
+ }
|
|
|
+ criteria.add(new Criterion(condition));
|
|
|
+ }
|
|
|
+
|
|
|
+ protected void addCriterion(String condition, Object value, String property) {
|
|
|
+ if (value == null) {
|
|
|
+ throw new RuntimeException("Value for " + property + " cannot be null");
|
|
|
+ }
|
|
|
+ criteria.add(new Criterion(condition, value));
|
|
|
+ }
|
|
|
+
|
|
|
+ protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
|
|
+ if (value1 == null || value2 == null) {
|
|
|
+ throw new RuntimeException("Between values for " + property + " cannot be null");
|
|
|
+ }
|
|
|
+ criteria.add(new Criterion(condition, value1, value2));
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdIsNull() {
|
|
|
+ addCriterion("pay_in_order_detail_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdIsNotNull() {
|
|
|
+ addCriterion("pay_in_order_detail_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdEqualTo(Integer value) {
|
|
|
+ addCriterion("pay_in_order_detail_id =", value, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdNotEqualTo(Integer value) {
|
|
|
+ addCriterion("pay_in_order_detail_id <>", value, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdGreaterThan(Integer value) {
|
|
|
+ addCriterion("pay_in_order_detail_id >", value, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pay_in_order_detail_id >=", value, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdLessThan(Integer value) {
|
|
|
+ addCriterion("pay_in_order_detail_id <", value, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pay_in_order_detail_id <=", value, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdIn(List<Integer> values) {
|
|
|
+ addCriterion("pay_in_order_detail_id in", values, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdNotIn(List<Integer> values) {
|
|
|
+ addCriterion("pay_in_order_detail_id not in", values, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pay_in_order_detail_id between", value1, value2, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderDetailIdNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pay_in_order_detail_id not between", value1, value2, "payInOrderDetailId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdIsNull() {
|
|
|
+ addCriterion("pay_in_order_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdIsNotNull() {
|
|
|
+ addCriterion("pay_in_order_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdEqualTo(Integer value) {
|
|
|
+ addCriterion("pay_in_order_id =", value, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdNotEqualTo(Integer value) {
|
|
|
+ addCriterion("pay_in_order_id <>", value, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdGreaterThan(Integer value) {
|
|
|
+ addCriterion("pay_in_order_id >", value, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pay_in_order_id >=", value, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdLessThan(Integer value) {
|
|
|
+ addCriterion("pay_in_order_id <", value, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pay_in_order_id <=", value, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdIn(List<Integer> values) {
|
|
|
+ addCriterion("pay_in_order_id in", values, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdNotIn(List<Integer> values) {
|
|
|
+ addCriterion("pay_in_order_id not in", values, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pay_in_order_id between", value1, value2, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayInOrderIdNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pay_in_order_id not between", value1, value2, "payInOrderId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdIsNull() {
|
|
|
+ addCriterion("product_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdIsNotNull() {
|
|
|
+ addCriterion("product_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdEqualTo(String value) {
|
|
|
+ addCriterion("product_id =", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdNotEqualTo(String value) {
|
|
|
+ addCriterion("product_id <>", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdGreaterThan(String value) {
|
|
|
+ addCriterion("product_id >", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_id >=", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdLessThan(String value) {
|
|
|
+ addCriterion("product_id <", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_id <=", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdLike(String value) {
|
|
|
+ addCriterion("product_id like", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdNotLike(String value) {
|
|
|
+ addCriterion("product_id not like", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdIn(List<String> values) {
|
|
|
+ addCriterion("product_id in", values, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdNotIn(List<String> values) {
|
|
|
+ addCriterion("product_id not in", values, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_id between", value1, value2, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_id not between", value1, value2, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameIsNull() {
|
|
|
+ addCriterion("product_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameIsNotNull() {
|
|
|
+ addCriterion("product_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameEqualTo(String value) {
|
|
|
+ addCriterion("product_name =", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameNotEqualTo(String value) {
|
|
|
+ addCriterion("product_name <>", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameGreaterThan(String value) {
|
|
|
+ addCriterion("product_name >", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_name >=", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameLessThan(String value) {
|
|
|
+ addCriterion("product_name <", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_name <=", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameLike(String value) {
|
|
|
+ addCriterion("product_name like", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameNotLike(String value) {
|
|
|
+ addCriterion("product_name not like", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameIn(List<String> values) {
|
|
|
+ addCriterion("product_name in", values, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameNotIn(List<String> values) {
|
|
|
+ addCriterion("product_name not in", values, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_name between", value1, value2, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_name not between", value1, value2, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceIsNull() {
|
|
|
+ addCriterion("product_price is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceIsNotNull() {
|
|
|
+ addCriterion("product_price is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceEqualTo(Long value) {
|
|
|
+ addCriterion("product_price =", value, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceNotEqualTo(Long value) {
|
|
|
+ addCriterion("product_price <>", value, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceGreaterThan(Long value) {
|
|
|
+ addCriterion("product_price >", value, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("product_price >=", value, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceLessThan(Long value) {
|
|
|
+ addCriterion("product_price <", value, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("product_price <=", value, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceIn(List<Long> values) {
|
|
|
+ addCriterion("product_price in", values, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceNotIn(List<Long> values) {
|
|
|
+ addCriterion("product_price not in", values, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("product_price between", value1, value2, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPriceNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("product_price not between", value1, value2, "productPrice");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountIsNull() {
|
|
|
+ addCriterion("product_count is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountIsNotNull() {
|
|
|
+ addCriterion("product_count is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountEqualTo(Integer value) {
|
|
|
+ addCriterion("product_count =", value, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountNotEqualTo(Integer value) {
|
|
|
+ addCriterion("product_count <>", value, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountGreaterThan(Integer value) {
|
|
|
+ addCriterion("product_count >", value, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("product_count >=", value, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountLessThan(Integer value) {
|
|
|
+ addCriterion("product_count <", value, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("product_count <=", value, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountIn(List<Integer> values) {
|
|
|
+ addCriterion("product_count in", values, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountNotIn(List<Integer> values) {
|
|
|
+ addCriterion("product_count not in", values, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("product_count between", value1, value2, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCountNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("product_count not between", value1, value2, "productCount");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkIsNull() {
|
|
|
+ addCriterion("remark is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkIsNotNull() {
|
|
|
+ addCriterion("remark is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkEqualTo(String value) {
|
|
|
+ addCriterion("remark =", value, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkNotEqualTo(String value) {
|
|
|
+ addCriterion("remark <>", value, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkGreaterThan(String value) {
|
|
|
+ addCriterion("remark >", value, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("remark >=", value, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkLessThan(String value) {
|
|
|
+ addCriterion("remark <", value, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("remark <=", value, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkLike(String value) {
|
|
|
+ addCriterion("remark like", value, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkNotLike(String value) {
|
|
|
+ addCriterion("remark not like", value, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkIn(List<String> values) {
|
|
|
+ addCriterion("remark in", values, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkNotIn(List<String> values) {
|
|
|
+ addCriterion("remark not in", values, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkBetween(String value1, String value2) {
|
|
|
+ addCriterion("remark between", value1, value2, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andRemarkNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("remark not between", value1, value2, "remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class Criteria extends GeneratedCriteria implements Serializable {
|
|
|
+
|
|
|
+ protected Criteria() {
|
|
|
+ super();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class Criterion implements Serializable {
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|