You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1704 lines
56 KiB
1704 lines
56 KiB
4 years ago
|
package com.hai.dao;
|
||
|
|
||
|
import java.math.BigDecimal;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.Date;
|
||
|
import java.util.List;
|
||
|
|
||
|
public class OutRechargeOrderExample {
|
||
|
protected String orderByClause;
|
||
|
|
||
|
protected boolean distinct;
|
||
|
|
||
|
protected List<Criteria> oredCriteria;
|
||
|
|
||
|
private Integer limit;
|
||
|
|
||
|
private Long offset;
|
||
|
|
||
|
public OutRechargeOrderExample() {
|
||
|
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(Long offset) {
|
||
|
this.offset = offset;
|
||
|
}
|
||
|
|
||
|
public Long getOffset() {
|
||
|
return offset;
|
||
|
}
|
||
|
|
||
|
protected abstract static class GeneratedCriteria {
|
||
|
protected List<Criterion> criteria;
|
||
|
|
||
|
protected GeneratedCriteria() {
|
||
|
super();
|
||
|
criteria = new ArrayList<Criterion>();
|
||
|
}
|
||
|
|
||
|
public boolean isValid() {
|
||
|
return criteria.size() > 0;
|
||
|
}
|
||
|
|
||
|
public List<Criterion> getAllCriteria() {
|
||
|
return criteria;
|
||
|
}
|
||
|
|
||
|
public List<Criterion> getCriteria() {
|
||
|
return criteria;
|
||
|
}
|
||
|
|
||
|
protected void addCriterion(String condition) {
|
||
|
if (condition == null) {
|
||
|
throw new RuntimeException("Value for condition cannot be null");
|
||
|
}
|
||
|
criteria.add(new Criterion(condition));
|
||
|
}
|
||
|
|
||
|
protected void addCriterion(String condition, Object value, String property) {
|
||
|
if (value == null) {
|
||
|
throw new RuntimeException("Value for " + property + " cannot be null");
|
||
|
}
|
||
|
criteria.add(new Criterion(condition, value));
|
||
|
}
|
||
|
|
||
|
protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
||
|
if (value1 == null || value2 == null) {
|
||
|
throw new RuntimeException("Between values for " + property + " cannot be null");
|
||
|
}
|
||
|
criteria.add(new Criterion(condition, value1, value2));
|
||
|
}
|
||
|
|
||
|
public Criteria andIdIsNull() {
|
||
|
addCriterion("id is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdIsNotNull() {
|
||
|
addCriterion("id is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdEqualTo(Long value) {
|
||
|
addCriterion("id =", value, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdNotEqualTo(Long value) {
|
||
|
addCriterion("id <>", value, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdGreaterThan(Long value) {
|
||
|
addCriterion("id >", value, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdGreaterThanOrEqualTo(Long value) {
|
||
|
addCriterion("id >=", value, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdLessThan(Long value) {
|
||
|
addCriterion("id <", value, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdLessThanOrEqualTo(Long value) {
|
||
|
addCriterion("id <=", value, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdIn(List<Long> values) {
|
||
|
addCriterion("id in", values, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdNotIn(List<Long> values) {
|
||
|
addCriterion("id not in", values, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdBetween(Long value1, Long value2) {
|
||
|
addCriterion("id between", value1, value2, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdNotBetween(Long value1, Long value2) {
|
||
|
addCriterion("id not between", value1, value2, "id");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoIsNull() {
|
||
|
addCriterion("order_no is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoIsNotNull() {
|
||
|
addCriterion("order_no is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoEqualTo(String value) {
|
||
|
addCriterion("order_no =", value, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoNotEqualTo(String value) {
|
||
|
addCriterion("order_no <>", value, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoGreaterThan(String value) {
|
||
|
addCriterion("order_no >", value, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("order_no >=", value, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoLessThan(String value) {
|
||
|
addCriterion("order_no <", value, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoLessThanOrEqualTo(String value) {
|
||
|
addCriterion("order_no <=", value, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoLike(String value) {
|
||
|
addCriterion("order_no like", value, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoNotLike(String value) {
|
||
|
addCriterion("order_no not like", value, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoIn(List<String> values) {
|
||
|
addCriterion("order_no in", values, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoNotIn(List<String> values) {
|
||
|
addCriterion("order_no not in", values, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoBetween(String value1, String value2) {
|
||
|
addCriterion("order_no between", value1, value2, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderNoNotBetween(String value1, String value2) {
|
||
|
addCriterion("order_no not between", value1, value2, "orderNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdIsNull() {
|
||
|
addCriterion("user_id is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdIsNotNull() {
|
||
|
addCriterion("user_id is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdEqualTo(Long value) {
|
||
|
addCriterion("user_id =", value, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdNotEqualTo(Long value) {
|
||
|
addCriterion("user_id <>", value, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdGreaterThan(Long value) {
|
||
|
addCriterion("user_id >", value, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdGreaterThanOrEqualTo(Long value) {
|
||
|
addCriterion("user_id >=", value, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdLessThan(Long value) {
|
||
|
addCriterion("user_id <", value, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdLessThanOrEqualTo(Long value) {
|
||
|
addCriterion("user_id <=", value, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdIn(List<Long> values) {
|
||
|
addCriterion("user_id in", values, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdNotIn(List<Long> values) {
|
||
|
addCriterion("user_id not in", values, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdBetween(Long value1, Long value2) {
|
||
|
addCriterion("user_id between", value1, value2, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserIdNotBetween(Long value1, Long value2) {
|
||
|
addCriterion("user_id not between", value1, value2, "userId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameIsNull() {
|
||
|
addCriterion("user_name is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameIsNotNull() {
|
||
|
addCriterion("user_name is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameEqualTo(String value) {
|
||
|
addCriterion("user_name =", value, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameNotEqualTo(String value) {
|
||
|
addCriterion("user_name <>", value, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameGreaterThan(String value) {
|
||
|
addCriterion("user_name >", value, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("user_name >=", value, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameLessThan(String value) {
|
||
|
addCriterion("user_name <", value, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameLessThanOrEqualTo(String value) {
|
||
|
addCriterion("user_name <=", value, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameLike(String value) {
|
||
|
addCriterion("user_name like", value, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameNotLike(String value) {
|
||
|
addCriterion("user_name not like", value, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameIn(List<String> values) {
|
||
|
addCriterion("user_name in", values, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameNotIn(List<String> values) {
|
||
|
addCriterion("user_name not in", values, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameBetween(String value1, String value2) {
|
||
|
addCriterion("user_name between", value1, value2, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserNameNotBetween(String value1, String value2) {
|
||
|
addCriterion("user_name not between", value1, value2, "userName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneIsNull() {
|
||
|
addCriterion("user_phone is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneIsNotNull() {
|
||
|
addCriterion("user_phone is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneEqualTo(String value) {
|
||
|
addCriterion("user_phone =", value, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneNotEqualTo(String value) {
|
||
|
addCriterion("user_phone <>", value, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneGreaterThan(String value) {
|
||
|
addCriterion("user_phone >", value, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("user_phone >=", value, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneLessThan(String value) {
|
||
|
addCriterion("user_phone <", value, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneLessThanOrEqualTo(String value) {
|
||
|
addCriterion("user_phone <=", value, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneLike(String value) {
|
||
|
addCriterion("user_phone like", value, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneNotLike(String value) {
|
||
|
addCriterion("user_phone not like", value, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneIn(List<String> values) {
|
||
|
addCriterion("user_phone in", values, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneNotIn(List<String> values) {
|
||
|
addCriterion("user_phone not in", values, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneBetween(String value1, String value2) {
|
||
|
addCriterion("user_phone between", value1, value2, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andUserPhoneNotBetween(String value1, String value2) {
|
||
|
addCriterion("user_phone not between", value1, value2, "userPhone");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelIsNull() {
|
||
|
addCriterion("recharge_model is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelIsNotNull() {
|
||
|
addCriterion("recharge_model is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelEqualTo(Integer value) {
|
||
|
addCriterion("recharge_model =", value, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelNotEqualTo(Integer value) {
|
||
|
addCriterion("recharge_model <>", value, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelGreaterThan(Integer value) {
|
||
|
addCriterion("recharge_model >", value, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelGreaterThanOrEqualTo(Integer value) {
|
||
|
addCriterion("recharge_model >=", value, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelLessThan(Integer value) {
|
||
|
addCriterion("recharge_model <", value, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelLessThanOrEqualTo(Integer value) {
|
||
|
addCriterion("recharge_model <=", value, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelIn(List<Integer> values) {
|
||
|
addCriterion("recharge_model in", values, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelNotIn(List<Integer> values) {
|
||
|
addCriterion("recharge_model not in", values, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelBetween(Integer value1, Integer value2) {
|
||
|
addCriterion("recharge_model between", value1, value2, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeModelNotBetween(Integer value1, Integer value2) {
|
||
|
addCriterion("recharge_model not between", value1, value2, "rechargeModel");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeIsNull() {
|
||
|
addCriterion("pay_type is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeIsNotNull() {
|
||
|
addCriterion("pay_type is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeEqualTo(Integer value) {
|
||
|
addCriterion("pay_type =", value, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeNotEqualTo(Integer value) {
|
||
|
addCriterion("pay_type <>", value, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeGreaterThan(Integer value) {
|
||
|
addCriterion("pay_type >", value, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeGreaterThanOrEqualTo(Integer value) {
|
||
|
addCriterion("pay_type >=", value, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeLessThan(Integer value) {
|
||
|
addCriterion("pay_type <", value, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeLessThanOrEqualTo(Integer value) {
|
||
|
addCriterion("pay_type <=", value, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeIn(List<Integer> values) {
|
||
|
addCriterion("pay_type in", values, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeNotIn(List<Integer> values) {
|
||
|
addCriterion("pay_type not in", values, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeBetween(Integer value1, Integer value2) {
|
||
|
addCriterion("pay_type between", value1, value2, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTypeNotBetween(Integer value1, Integer value2) {
|
||
|
addCriterion("pay_type not between", value1, value2, "payType");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceIsNull() {
|
||
|
addCriterion("pay_price is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceIsNotNull() {
|
||
|
addCriterion("pay_price is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceEqualTo(BigDecimal value) {
|
||
|
addCriterion("pay_price =", value, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceNotEqualTo(BigDecimal value) {
|
||
|
addCriterion("pay_price <>", value, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceGreaterThan(BigDecimal value) {
|
||
|
addCriterion("pay_price >", value, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceGreaterThanOrEqualTo(BigDecimal value) {
|
||
|
addCriterion("pay_price >=", value, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceLessThan(BigDecimal value) {
|
||
|
addCriterion("pay_price <", value, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceLessThanOrEqualTo(BigDecimal value) {
|
||
|
addCriterion("pay_price <=", value, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceIn(List<BigDecimal> values) {
|
||
|
addCriterion("pay_price in", values, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceNotIn(List<BigDecimal> values) {
|
||
|
addCriterion("pay_price not in", values, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceBetween(BigDecimal value1, BigDecimal value2) {
|
||
|
addCriterion("pay_price between", value1, value2, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayPriceNotBetween(BigDecimal value1, BigDecimal value2) {
|
||
|
addCriterion("pay_price not between", value1, value2, "payPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceIsNull() {
|
||
|
addCriterion("order_price is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceIsNotNull() {
|
||
|
addCriterion("order_price is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceEqualTo(BigDecimal value) {
|
||
|
addCriterion("order_price =", value, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceNotEqualTo(BigDecimal value) {
|
||
|
addCriterion("order_price <>", value, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceGreaterThan(BigDecimal value) {
|
||
|
addCriterion("order_price >", value, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceGreaterThanOrEqualTo(BigDecimal value) {
|
||
|
addCriterion("order_price >=", value, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceLessThan(BigDecimal value) {
|
||
|
addCriterion("order_price <", value, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceLessThanOrEqualTo(BigDecimal value) {
|
||
|
addCriterion("order_price <=", value, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceIn(List<BigDecimal> values) {
|
||
|
addCriterion("order_price in", values, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceNotIn(List<BigDecimal> values) {
|
||
|
addCriterion("order_price not in", values, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceBetween(BigDecimal value1, BigDecimal value2) {
|
||
|
addCriterion("order_price between", value1, value2, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOrderPriceNotBetween(BigDecimal value1, BigDecimal value2) {
|
||
|
addCriterion("order_price not between", value1, value2, "orderPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceIsNull() {
|
||
|
addCriterion("pay_real_price is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceIsNotNull() {
|
||
|
addCriterion("pay_real_price is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceEqualTo(BigDecimal value) {
|
||
|
addCriterion("pay_real_price =", value, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceNotEqualTo(BigDecimal value) {
|
||
|
addCriterion("pay_real_price <>", value, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceGreaterThan(BigDecimal value) {
|
||
|
addCriterion("pay_real_price >", value, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceGreaterThanOrEqualTo(BigDecimal value) {
|
||
|
addCriterion("pay_real_price >=", value, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceLessThan(BigDecimal value) {
|
||
|
addCriterion("pay_real_price <", value, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceLessThanOrEqualTo(BigDecimal value) {
|
||
|
addCriterion("pay_real_price <=", value, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceIn(List<BigDecimal> values) {
|
||
|
addCriterion("pay_real_price in", values, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceNotIn(List<BigDecimal> values) {
|
||
|
addCriterion("pay_real_price not in", values, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceBetween(BigDecimal value1, BigDecimal value2) {
|
||
|
addCriterion("pay_real_price between", value1, value2, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayRealPriceNotBetween(BigDecimal value1, BigDecimal value2) {
|
||
|
addCriterion("pay_real_price not between", value1, value2, "payRealPrice");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoIsNull() {
|
||
|
addCriterion("pay_serial_no is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoIsNotNull() {
|
||
|
addCriterion("pay_serial_no is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoEqualTo(String value) {
|
||
|
addCriterion("pay_serial_no =", value, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoNotEqualTo(String value) {
|
||
|
addCriterion("pay_serial_no <>", value, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoGreaterThan(String value) {
|
||
|
addCriterion("pay_serial_no >", value, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("pay_serial_no >=", value, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoLessThan(String value) {
|
||
|
addCriterion("pay_serial_no <", value, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoLessThanOrEqualTo(String value) {
|
||
|
addCriterion("pay_serial_no <=", value, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoLike(String value) {
|
||
|
addCriterion("pay_serial_no like", value, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoNotLike(String value) {
|
||
|
addCriterion("pay_serial_no not like", value, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoIn(List<String> values) {
|
||
|
addCriterion("pay_serial_no in", values, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoNotIn(List<String> values) {
|
||
|
addCriterion("pay_serial_no not in", values, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoBetween(String value1, String value2) {
|
||
|
addCriterion("pay_serial_no between", value1, value2, "paySerialNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPaySerialNoNotBetween(String value1, String value2) {
|
||
|
addCriterion("pay_serial_no not between", value1, value2, "paySerialNo");
|
||
|
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 andRechargeContentIsNull() {
|
||
|
addCriterion("recharge_content is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentIsNotNull() {
|
||
|
addCriterion("recharge_content is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentEqualTo(String value) {
|
||
|
addCriterion("recharge_content =", value, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentNotEqualTo(String value) {
|
||
|
addCriterion("recharge_content <>", value, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentGreaterThan(String value) {
|
||
|
addCriterion("recharge_content >", value, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("recharge_content >=", value, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentLessThan(String value) {
|
||
|
addCriterion("recharge_content <", value, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentLessThanOrEqualTo(String value) {
|
||
|
addCriterion("recharge_content <=", value, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentLike(String value) {
|
||
|
addCriterion("recharge_content like", value, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentNotLike(String value) {
|
||
|
addCriterion("recharge_content not like", value, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentIn(List<String> values) {
|
||
|
addCriterion("recharge_content in", values, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentNotIn(List<String> values) {
|
||
|
addCriterion("recharge_content not in", values, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentBetween(String value1, String value2) {
|
||
|
addCriterion("recharge_content between", value1, value2, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeContentNotBetween(String value1, String value2) {
|
||
|
addCriterion("recharge_content not between", value1, value2, "rechargeContent");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameIsNull() {
|
||
|
addCriterion("recharge_name is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameIsNotNull() {
|
||
|
addCriterion("recharge_name is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameEqualTo(String value) {
|
||
|
addCriterion("recharge_name =", value, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameNotEqualTo(String value) {
|
||
|
addCriterion("recharge_name <>", value, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameGreaterThan(String value) {
|
||
|
addCriterion("recharge_name >", value, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("recharge_name >=", value, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameLessThan(String value) {
|
||
|
addCriterion("recharge_name <", value, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameLessThanOrEqualTo(String value) {
|
||
|
addCriterion("recharge_name <=", value, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameLike(String value) {
|
||
|
addCriterion("recharge_name like", value, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameNotLike(String value) {
|
||
|
addCriterion("recharge_name not like", value, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameIn(List<String> values) {
|
||
|
addCriterion("recharge_name in", values, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameNotIn(List<String> values) {
|
||
|
addCriterion("recharge_name not in", values, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameBetween(String value1, String value2) {
|
||
|
addCriterion("recharge_name between", value1, value2, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRechargeNameNotBetween(String value1, String value2) {
|
||
|
addCriterion("recharge_name not between", value1, value2, "rechargeName");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardIsNull() {
|
||
|
addCriterion("id_card is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardIsNotNull() {
|
||
|
addCriterion("id_card is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardEqualTo(String value) {
|
||
|
addCriterion("id_card =", value, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardNotEqualTo(String value) {
|
||
|
addCriterion("id_card <>", value, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardGreaterThan(String value) {
|
||
|
addCriterion("id_card >", value, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("id_card >=", value, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardLessThan(String value) {
|
||
|
addCriterion("id_card <", value, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardLessThanOrEqualTo(String value) {
|
||
|
addCriterion("id_card <=", value, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardLike(String value) {
|
||
|
addCriterion("id_card like", value, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardNotLike(String value) {
|
||
|
addCriterion("id_card not like", value, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardIn(List<String> values) {
|
||
|
addCriterion("id_card in", values, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardNotIn(List<String> values) {
|
||
|
addCriterion("id_card not in", values, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardBetween(String value1, String value2) {
|
||
|
addCriterion("id_card between", value1, value2, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andIdCardNotBetween(String value1, String value2) {
|
||
|
addCriterion("id_card not between", value1, value2, "idCard");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedIsNull() {
|
||
|
addCriterion("create_timed is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedIsNotNull() {
|
||
|
addCriterion("create_timed is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedEqualTo(Date value) {
|
||
|
addCriterion("create_timed =", value, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedNotEqualTo(Date value) {
|
||
|
addCriterion("create_timed <>", value, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedGreaterThan(Date value) {
|
||
|
addCriterion("create_timed >", value, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedGreaterThanOrEqualTo(Date value) {
|
||
|
addCriterion("create_timed >=", value, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedLessThan(Date value) {
|
||
|
addCriterion("create_timed <", value, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedLessThanOrEqualTo(Date value) {
|
||
|
addCriterion("create_timed <=", value, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedIn(List<Date> values) {
|
||
|
addCriterion("create_timed in", values, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedNotIn(List<Date> values) {
|
||
|
addCriterion("create_timed not in", values, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedBetween(Date value1, Date value2) {
|
||
|
addCriterion("create_timed between", value1, value2, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCreateTimedNotBetween(Date value1, Date value2) {
|
||
|
addCriterion("create_timed not between", value1, value2, "createTimed");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeIsNull() {
|
||
|
addCriterion("pay_time is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeIsNotNull() {
|
||
|
addCriterion("pay_time is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeEqualTo(Date value) {
|
||
|
addCriterion("pay_time =", value, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeNotEqualTo(Date value) {
|
||
|
addCriterion("pay_time <>", value, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeGreaterThan(Date value) {
|
||
|
addCriterion("pay_time >", value, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeGreaterThanOrEqualTo(Date value) {
|
||
|
addCriterion("pay_time >=", value, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeLessThan(Date value) {
|
||
|
addCriterion("pay_time <", value, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeLessThanOrEqualTo(Date value) {
|
||
|
addCriterion("pay_time <=", value, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeIn(List<Date> values) {
|
||
|
addCriterion("pay_time in", values, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeNotIn(List<Date> values) {
|
||
|
addCriterion("pay_time not in", values, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeBetween(Date value1, Date value2) {
|
||
|
addCriterion("pay_time between", value1, value2, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andPayTimeNotBetween(Date value1, Date value2) {
|
||
|
addCriterion("pay_time not between", value1, value2, "payTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeIsNull() {
|
||
|
addCriterion("cancel_time is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeIsNotNull() {
|
||
|
addCriterion("cancel_time is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeEqualTo(Date value) {
|
||
|
addCriterion("cancel_time =", value, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeNotEqualTo(Date value) {
|
||
|
addCriterion("cancel_time <>", value, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeGreaterThan(Date value) {
|
||
|
addCriterion("cancel_time >", value, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeGreaterThanOrEqualTo(Date value) {
|
||
|
addCriterion("cancel_time >=", value, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeLessThan(Date value) {
|
||
|
addCriterion("cancel_time <", value, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeLessThanOrEqualTo(Date value) {
|
||
|
addCriterion("cancel_time <=", value, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeIn(List<Date> values) {
|
||
|
addCriterion("cancel_time in", values, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeNotIn(List<Date> values) {
|
||
|
addCriterion("cancel_time not in", values, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeBetween(Date value1, Date value2) {
|
||
|
addCriterion("cancel_time between", value1, value2, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andCancelTimeNotBetween(Date value1, Date value2) {
|
||
|
addCriterion("cancel_time not between", value1, value2, "cancelTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeIsNull() {
|
||
|
addCriterion("finish_time is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeIsNotNull() {
|
||
|
addCriterion("finish_time is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeEqualTo(Date value) {
|
||
|
addCriterion("finish_time =", value, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeNotEqualTo(Date value) {
|
||
|
addCriterion("finish_time <>", value, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeGreaterThan(Date value) {
|
||
|
addCriterion("finish_time >", value, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeGreaterThanOrEqualTo(Date value) {
|
||
|
addCriterion("finish_time >=", value, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeLessThan(Date value) {
|
||
|
addCriterion("finish_time <", value, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeLessThanOrEqualTo(Date value) {
|
||
|
addCriterion("finish_time <=", value, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeIn(List<Date> values) {
|
||
|
addCriterion("finish_time in", values, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeNotIn(List<Date> values) {
|
||
|
addCriterion("finish_time not in", values, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeBetween(Date value1, Date value2) {
|
||
|
addCriterion("finish_time between", value1, value2, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andFinishTimeNotBetween(Date value1, Date value2) {
|
||
|
addCriterion("finish_time not between", value1, value2, "finishTime");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksIsNull() {
|
||
|
addCriterion("remarks is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksIsNotNull() {
|
||
|
addCriterion("remarks is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksEqualTo(String value) {
|
||
|
addCriterion("remarks =", value, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksNotEqualTo(String value) {
|
||
|
addCriterion("remarks <>", value, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksGreaterThan(String value) {
|
||
|
addCriterion("remarks >", value, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("remarks >=", value, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksLessThan(String value) {
|
||
|
addCriterion("remarks <", value, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksLessThanOrEqualTo(String value) {
|
||
|
addCriterion("remarks <=", value, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksLike(String value) {
|
||
|
addCriterion("remarks like", value, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksNotLike(String value) {
|
||
|
addCriterion("remarks not like", value, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksIn(List<String> values) {
|
||
|
addCriterion("remarks in", values, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksNotIn(List<String> values) {
|
||
|
addCriterion("remarks not in", values, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksBetween(String value1, String value2) {
|
||
|
addCriterion("remarks between", value1, value2, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRemarksNotBetween(String value1, String value2) {
|
||
|
addCriterion("remarks not between", value1, value2, "remarks");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoIsNull() {
|
||
|
addCriterion("out_refund_no is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoIsNotNull() {
|
||
|
addCriterion("out_refund_no is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoEqualTo(String value) {
|
||
|
addCriterion("out_refund_no =", value, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoNotEqualTo(String value) {
|
||
|
addCriterion("out_refund_no <>", value, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoGreaterThan(String value) {
|
||
|
addCriterion("out_refund_no >", value, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("out_refund_no >=", value, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoLessThan(String value) {
|
||
|
addCriterion("out_refund_no <", value, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoLessThanOrEqualTo(String value) {
|
||
|
addCriterion("out_refund_no <=", value, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoLike(String value) {
|
||
|
addCriterion("out_refund_no like", value, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoNotLike(String value) {
|
||
|
addCriterion("out_refund_no not like", value, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoIn(List<String> values) {
|
||
|
addCriterion("out_refund_no in", values, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoNotIn(List<String> values) {
|
||
|
addCriterion("out_refund_no not in", values, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoBetween(String value1, String value2) {
|
||
|
addCriterion("out_refund_no between", value1, value2, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andOutRefundNoNotBetween(String value1, String value2) {
|
||
|
addCriterion("out_refund_no not between", value1, value2, "outRefundNo");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdIsNull() {
|
||
|
addCriterion("refund_id is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdIsNotNull() {
|
||
|
addCriterion("refund_id is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdEqualTo(String value) {
|
||
|
addCriterion("refund_id =", value, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdNotEqualTo(String value) {
|
||
|
addCriterion("refund_id <>", value, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdGreaterThan(String value) {
|
||
|
addCriterion("refund_id >", value, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdGreaterThanOrEqualTo(String value) {
|
||
|
addCriterion("refund_id >=", value, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdLessThan(String value) {
|
||
|
addCriterion("refund_id <", value, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdLessThanOrEqualTo(String value) {
|
||
|
addCriterion("refund_id <=", value, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdLike(String value) {
|
||
|
addCriterion("refund_id like", value, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdNotLike(String value) {
|
||
|
addCriterion("refund_id not like", value, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdIn(List<String> values) {
|
||
|
addCriterion("refund_id in", values, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdNotIn(List<String> values) {
|
||
|
addCriterion("refund_id not in", values, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdBetween(String value1, String value2) {
|
||
|
addCriterion("refund_id between", value1, value2, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundIdNotBetween(String value1, String value2) {
|
||
|
addCriterion("refund_id not between", value1, value2, "refundId");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeIsNull() {
|
||
|
addCriterion("refund_fee is null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeIsNotNull() {
|
||
|
addCriterion("refund_fee is not null");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeEqualTo(BigDecimal value) {
|
||
|
addCriterion("refund_fee =", value, "refundFee");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeNotEqualTo(BigDecimal value) {
|
||
|
addCriterion("refund_fee <>", value, "refundFee");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeGreaterThan(BigDecimal value) {
|
||
|
addCriterion("refund_fee >", value, "refundFee");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeGreaterThanOrEqualTo(BigDecimal value) {
|
||
|
addCriterion("refund_fee >=", value, "refundFee");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeLessThan(BigDecimal value) {
|
||
|
addCriterion("refund_fee <", value, "refundFee");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeLessThanOrEqualTo(BigDecimal value) {
|
||
|
addCriterion("refund_fee <=", value, "refundFee");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeIn(List<BigDecimal> values) {
|
||
|
addCriterion("refund_fee in", values, "refundFee");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeNotIn(List<BigDecimal> values) {
|
||
|
addCriterion("refund_fee not in", values, "refundFee");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeBetween(BigDecimal value1, BigDecimal value2) {
|
||
|
addCriterion("refund_fee between", value1, value2, "refundFee");
|
||
|
return (Criteria) this;
|
||
|
}
|
||
|
|
||
|
public Criteria andRefundFeeNotBetween(BigDecimal value1, BigDecimal value2) {
|
||
|
addCriterion("refund_fee not between", value1, value2, "refundFee");
|
||
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|