|
|
|
@ -245,73 +245,183 @@ public class GoodsMsgExample { |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdIsNull() { |
|
|
|
|
addCriterion("third_id is null"); |
|
|
|
|
public Criteria andChildTypeIsNull() { |
|
|
|
|
addCriterion("child_type is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdIsNotNull() { |
|
|
|
|
addCriterion("third_id is not null"); |
|
|
|
|
public Criteria andChildTypeIsNotNull() { |
|
|
|
|
addCriterion("child_type is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdEqualTo(String value) { |
|
|
|
|
addCriterion("third_id =", value, "thirdId"); |
|
|
|
|
public Criteria andChildTypeEqualTo(Integer value) { |
|
|
|
|
addCriterion("child_type =", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdNotEqualTo(String value) { |
|
|
|
|
addCriterion("third_id <>", value, "thirdId"); |
|
|
|
|
public Criteria andChildTypeNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("child_type <>", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdGreaterThan(String value) { |
|
|
|
|
addCriterion("third_id >", value, "thirdId"); |
|
|
|
|
public Criteria andChildTypeGreaterThan(Integer value) { |
|
|
|
|
addCriterion("child_type >", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdGreaterThanOrEqualTo(String value) { |
|
|
|
|
addCriterion("third_id >=", value, "thirdId"); |
|
|
|
|
public Criteria andChildTypeGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("child_type >=", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdLessThan(String value) { |
|
|
|
|
addCriterion("third_id <", value, "thirdId"); |
|
|
|
|
public Criteria andChildTypeLessThan(Integer value) { |
|
|
|
|
addCriterion("child_type <", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdLessThanOrEqualTo(String value) { |
|
|
|
|
addCriterion("third_id <=", value, "thirdId"); |
|
|
|
|
public Criteria andChildTypeLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("child_type <=", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdLike(String value) { |
|
|
|
|
addCriterion("third_id like", value, "thirdId"); |
|
|
|
|
public Criteria andChildTypeIn(List<Integer> values) { |
|
|
|
|
addCriterion("child_type in", values, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdNotLike(String value) { |
|
|
|
|
addCriterion("third_id not like", value, "thirdId"); |
|
|
|
|
public Criteria andChildTypeNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("child_type not in", values, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdIn(List<String> values) { |
|
|
|
|
addCriterion("third_id in", values, "thirdId"); |
|
|
|
|
public Criteria andChildTypeBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("child_type between", value1, value2, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdNotIn(List<String> values) { |
|
|
|
|
addCriterion("third_id not in", values, "thirdId"); |
|
|
|
|
public Criteria andChildTypeNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("child_type not between", value1, value2, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdBetween(String value1, String value2) { |
|
|
|
|
addCriterion("third_id between", value1, value2, "thirdId"); |
|
|
|
|
public Criteria andShowTypeIsNull() { |
|
|
|
|
addCriterion("show_type is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdNotBetween(String value1, String value2) { |
|
|
|
|
addCriterion("third_id not between", value1, value2, "thirdId"); |
|
|
|
|
public Criteria andShowTypeIsNotNull() { |
|
|
|
|
addCriterion("show_type is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeEqualTo(Integer value) { |
|
|
|
|
addCriterion("show_type =", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("show_type <>", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeGreaterThan(Integer value) { |
|
|
|
|
addCriterion("show_type >", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("show_type >=", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeLessThan(Integer value) { |
|
|
|
|
addCriterion("show_type <", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("show_type <=", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeIn(List<Integer> values) { |
|
|
|
|
addCriterion("show_type in", values, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("show_type not in", values, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("show_type between", value1, value2, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("show_type not between", value1, value2, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortIsNull() { |
|
|
|
|
addCriterion("sort is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortIsNotNull() { |
|
|
|
|
addCriterion("sort is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort =", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort <>", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortGreaterThan(Integer value) { |
|
|
|
|
addCriterion("sort >", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort >=", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortLessThan(Integer value) { |
|
|
|
|
addCriterion("sort <", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort <=", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortIn(List<Integer> values) { |
|
|
|
|
addCriterion("sort in", values, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("sort not in", values, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("sort between", value1, value2, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("sort not between", value1, value2, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -445,6 +555,76 @@ public class GoodsMsgExample { |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdIsNull() { |
|
|
|
|
addCriterion("third_id is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdIsNotNull() { |
|
|
|
|
addCriterion("third_id is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdEqualTo(String value) { |
|
|
|
|
addCriterion("third_id =", value, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdNotEqualTo(String value) { |
|
|
|
|
addCriterion("third_id <>", value, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdGreaterThan(String value) { |
|
|
|
|
addCriterion("third_id >", value, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdGreaterThanOrEqualTo(String value) { |
|
|
|
|
addCriterion("third_id >=", value, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdLessThan(String value) { |
|
|
|
|
addCriterion("third_id <", value, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdLessThanOrEqualTo(String value) { |
|
|
|
|
addCriterion("third_id <=", value, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdLike(String value) { |
|
|
|
|
addCriterion("third_id like", value, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdNotLike(String value) { |
|
|
|
|
addCriterion("third_id not like", value, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdIn(List<String> values) { |
|
|
|
|
addCriterion("third_id in", values, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdNotIn(List<String> values) { |
|
|
|
|
addCriterion("third_id not in", values, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdBetween(String value1, String value2) { |
|
|
|
|
addCriterion("third_id between", value1, value2, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andThirdIdNotBetween(String value1, String value2) { |
|
|
|
|
addCriterion("third_id not between", value1, value2, "thirdId"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andGoodsTypeParentNameIsNull() { |
|
|
|
|
addCriterion("goods_type_parent_name is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
@ -635,126 +815,6 @@ public class GoodsMsgExample { |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeIsNull() { |
|
|
|
|
addCriterion("child_type is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeIsNotNull() { |
|
|
|
|
addCriterion("child_type is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeEqualTo(Integer value) { |
|
|
|
|
addCriterion("child_type =", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("child_type <>", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeGreaterThan(Integer value) { |
|
|
|
|
addCriterion("child_type >", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("child_type >=", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeLessThan(Integer value) { |
|
|
|
|
addCriterion("child_type <", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("child_type <=", value, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeIn(List<Integer> values) { |
|
|
|
|
addCriterion("child_type in", values, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("child_type not in", values, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("child_type between", value1, value2, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andChildTypeNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("child_type not between", value1, value2, "childType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeIsNull() { |
|
|
|
|
addCriterion("show_type is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeIsNotNull() { |
|
|
|
|
addCriterion("show_type is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeEqualTo(Integer value) { |
|
|
|
|
addCriterion("show_type =", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("show_type <>", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeGreaterThan(Integer value) { |
|
|
|
|
addCriterion("show_type >", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("show_type >=", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeLessThan(Integer value) { |
|
|
|
|
addCriterion("show_type <", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("show_type <=", value, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeIn(List<Integer> values) { |
|
|
|
|
addCriterion("show_type in", values, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("show_type not in", values, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("show_type between", value1, value2, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andShowTypeNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("show_type not between", value1, value2, "showType"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andGoodsBrandNameIsNull() { |
|
|
|
|
addCriterion("goods_brand_name is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|