|
|
|
@ -1,5 +1,6 @@ |
|
|
|
|
package com.hai.entity; |
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.Date; |
|
|
|
|
import java.util.List; |
|
|
|
@ -465,6 +466,186 @@ public class GoodsOrderExample { |
|
|
|
|
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 andFreightPriceIsNull() { |
|
|
|
|
addCriterion("freight_price is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceIsNotNull() { |
|
|
|
|
addCriterion("freight_price is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceEqualTo(BigDecimal value) { |
|
|
|
|
addCriterion("freight_price =", value, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceNotEqualTo(BigDecimal value) { |
|
|
|
|
addCriterion("freight_price <>", value, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceGreaterThan(BigDecimal value) { |
|
|
|
|
addCriterion("freight_price >", value, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceGreaterThanOrEqualTo(BigDecimal value) { |
|
|
|
|
addCriterion("freight_price >=", value, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceLessThan(BigDecimal value) { |
|
|
|
|
addCriterion("freight_price <", value, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceLessThanOrEqualTo(BigDecimal value) { |
|
|
|
|
addCriterion("freight_price <=", value, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceIn(List<BigDecimal> values) { |
|
|
|
|
addCriterion("freight_price in", values, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceNotIn(List<BigDecimal> values) { |
|
|
|
|
addCriterion("freight_price not in", values, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceBetween(BigDecimal value1, BigDecimal value2) { |
|
|
|
|
addCriterion("freight_price between", value1, value2, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andFreightPriceNotBetween(BigDecimal value1, BigDecimal value2) { |
|
|
|
|
addCriterion("freight_price not between", value1, value2, "freightPrice"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressIdIsNull() { |
|
|
|
|
addCriterion("delivery_address_id is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
@ -525,6 +706,76 @@ public class GoodsOrderExample { |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressIsNull() { |
|
|
|
|
addCriterion("delivery_address is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressIsNotNull() { |
|
|
|
|
addCriterion("delivery_address is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressEqualTo(String value) { |
|
|
|
|
addCriterion("delivery_address =", value, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressNotEqualTo(String value) { |
|
|
|
|
addCriterion("delivery_address <>", value, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressGreaterThan(String value) { |
|
|
|
|
addCriterion("delivery_address >", value, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressGreaterThanOrEqualTo(String value) { |
|
|
|
|
addCriterion("delivery_address >=", value, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressLessThan(String value) { |
|
|
|
|
addCriterion("delivery_address <", value, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressLessThanOrEqualTo(String value) { |
|
|
|
|
addCriterion("delivery_address <=", value, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressLike(String value) { |
|
|
|
|
addCriterion("delivery_address like", value, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressNotLike(String value) { |
|
|
|
|
addCriterion("delivery_address not like", value, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressIn(List<String> values) { |
|
|
|
|
addCriterion("delivery_address in", values, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressNotIn(List<String> values) { |
|
|
|
|
addCriterion("delivery_address not in", values, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressBetween(String value1, String value2) { |
|
|
|
|
addCriterion("delivery_address between", value1, value2, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andDeliveryAddressNotBetween(String value1, String value2) { |
|
|
|
|
addCriterion("delivery_address not between", value1, value2, "deliveryAddress"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeIsNull() { |
|
|
|
|
addCriterion("create_time is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|