|
|
|
@ -185,6 +185,66 @@ public class HighCouponAgentCodeExample { |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeIsNull() { |
|
|
|
|
addCriterion("`type` is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeIsNotNull() { |
|
|
|
|
addCriterion("`type` is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeEqualTo(Integer value) { |
|
|
|
|
addCriterion("`type` =", value, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("`type` <>", value, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeGreaterThan(Integer value) { |
|
|
|
|
addCriterion("`type` >", value, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("`type` >=", value, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeLessThan(Integer value) { |
|
|
|
|
addCriterion("`type` <", value, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("`type` <=", value, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeIn(List<Integer> values) { |
|
|
|
|
addCriterion("`type` in", values, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("`type` not in", values, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("`type` between", value1, value2, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andTypeNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("`type` not between", value1, value2, "type"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentIdIsNull() { |
|
|
|
|
addCriterion("coupon_agent_id is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
@ -365,123 +425,193 @@ public class HighCouponAgentCodeExample { |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdIsNull() { |
|
|
|
|
addCriterion("coupon_code_id is null"); |
|
|
|
|
public Criteria andCouponAgentRecordIdIsNull() { |
|
|
|
|
addCriterion("coupon_agent_record_id is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdIsNotNull() { |
|
|
|
|
addCriterion("coupon_code_id is not null"); |
|
|
|
|
public Criteria andCouponAgentRecordIdIsNotNull() { |
|
|
|
|
addCriterion("coupon_agent_record_id is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_code_id =", value, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id =", value, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdNotEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_code_id <>", value, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdNotEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id <>", value, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdGreaterThan(Long value) { |
|
|
|
|
addCriterion("coupon_code_id >", value, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdGreaterThan(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id >", value, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdGreaterThanOrEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_code_id >=", value, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdGreaterThanOrEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id >=", value, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdLessThan(Long value) { |
|
|
|
|
addCriterion("coupon_code_id <", value, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdLessThan(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id <", value, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdLessThanOrEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_code_id <=", value, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdLessThanOrEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id <=", value, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdIn(List<Long> values) { |
|
|
|
|
addCriterion("coupon_code_id in", values, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdIn(List<Long> values) { |
|
|
|
|
addCriterion("coupon_agent_record_id in", values, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdNotIn(List<Long> values) { |
|
|
|
|
addCriterion("coupon_code_id not in", values, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdNotIn(List<Long> values) { |
|
|
|
|
addCriterion("coupon_agent_record_id not in", values, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdBetween(Long value1, Long value2) { |
|
|
|
|
addCriterion("coupon_code_id between", value1, value2, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdBetween(Long value1, Long value2) { |
|
|
|
|
addCriterion("coupon_agent_record_id between", value1, value2, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdNotBetween(Long value1, Long value2) { |
|
|
|
|
addCriterion("coupon_code_id not between", value1, value2, "couponCodeId"); |
|
|
|
|
public Criteria andCouponAgentRecordIdNotBetween(Long value1, Long value2) { |
|
|
|
|
addCriterion("coupon_agent_record_id not between", value1, value2, "couponAgentRecordId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdIsNull() { |
|
|
|
|
addCriterion("coupon_agent_record_id is null"); |
|
|
|
|
public Criteria andConvertCodeIsNull() { |
|
|
|
|
addCriterion("convert_code is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdIsNotNull() { |
|
|
|
|
addCriterion("coupon_agent_record_id is not null"); |
|
|
|
|
public Criteria andConvertCodeIsNotNull() { |
|
|
|
|
addCriterion("convert_code is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id =", value, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeEqualTo(String value) { |
|
|
|
|
addCriterion("convert_code =", value, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdNotEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id <>", value, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeNotEqualTo(String value) { |
|
|
|
|
addCriterion("convert_code <>", value, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdGreaterThan(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id >", value, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeGreaterThan(String value) { |
|
|
|
|
addCriterion("convert_code >", value, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdGreaterThanOrEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id >=", value, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeGreaterThanOrEqualTo(String value) { |
|
|
|
|
addCriterion("convert_code >=", value, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdLessThan(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id <", value, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeLessThan(String value) { |
|
|
|
|
addCriterion("convert_code <", value, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdLessThanOrEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_agent_record_id <=", value, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeLessThanOrEqualTo(String value) { |
|
|
|
|
addCriterion("convert_code <=", value, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdIn(List<Long> values) { |
|
|
|
|
addCriterion("coupon_agent_record_id in", values, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeLike(String value) { |
|
|
|
|
addCriterion("convert_code like", value, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdNotIn(List<Long> values) { |
|
|
|
|
addCriterion("coupon_agent_record_id not in", values, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeNotLike(String value) { |
|
|
|
|
addCriterion("convert_code not like", value, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdBetween(Long value1, Long value2) { |
|
|
|
|
addCriterion("coupon_agent_record_id between", value1, value2, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeIn(List<String> values) { |
|
|
|
|
addCriterion("convert_code in", values, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponAgentRecordIdNotBetween(Long value1, Long value2) { |
|
|
|
|
addCriterion("coupon_agent_record_id not between", value1, value2, "couponAgentRecordId"); |
|
|
|
|
public Criteria andConvertCodeNotIn(List<String> values) { |
|
|
|
|
addCriterion("convert_code not in", values, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andConvertCodeBetween(String value1, String value2) { |
|
|
|
|
addCriterion("convert_code between", value1, value2, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andConvertCodeNotBetween(String value1, String value2) { |
|
|
|
|
addCriterion("convert_code not between", value1, value2, "convertCode"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdIsNull() { |
|
|
|
|
addCriterion("coupon_code_id is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdIsNotNull() { |
|
|
|
|
addCriterion("coupon_code_id is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_code_id =", value, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdNotEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_code_id <>", value, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdGreaterThan(Long value) { |
|
|
|
|
addCriterion("coupon_code_id >", value, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdGreaterThanOrEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_code_id >=", value, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdLessThan(Long value) { |
|
|
|
|
addCriterion("coupon_code_id <", value, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdLessThanOrEqualTo(Long value) { |
|
|
|
|
addCriterion("coupon_code_id <=", value, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdIn(List<Long> values) { |
|
|
|
|
addCriterion("coupon_code_id in", values, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdNotIn(List<Long> values) { |
|
|
|
|
addCriterion("coupon_code_id not in", values, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdBetween(Long value1, Long value2) { |
|
|
|
|
addCriterion("coupon_code_id between", value1, value2, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andCouponCodeIdNotBetween(Long value1, Long value2) { |
|
|
|
|
addCriterion("coupon_code_id not between", value1, value2, "couponCodeId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|