|
|
|
@ -565,123 +565,123 @@ public class GoodsTypeExample { |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusIsNull() { |
|
|
|
|
addCriterion("`status` is null"); |
|
|
|
|
public Criteria andSortIsNull() { |
|
|
|
|
addCriterion("sort is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusIsNotNull() { |
|
|
|
|
addCriterion("`status` is not null"); |
|
|
|
|
public Criteria andSortIsNotNull() { |
|
|
|
|
addCriterion("sort is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusEqualTo(Integer value) { |
|
|
|
|
addCriterion("`status` =", value, "status"); |
|
|
|
|
public Criteria andSortEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort =", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("`status` <>", value, "status"); |
|
|
|
|
public Criteria andSortNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort <>", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusGreaterThan(Integer value) { |
|
|
|
|
addCriterion("`status` >", value, "status"); |
|
|
|
|
public Criteria andSortGreaterThan(Integer value) { |
|
|
|
|
addCriterion("sort >", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("`status` >=", value, "status"); |
|
|
|
|
public Criteria andSortGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort >=", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusLessThan(Integer value) { |
|
|
|
|
addCriterion("`status` <", value, "status"); |
|
|
|
|
public Criteria andSortLessThan(Integer value) { |
|
|
|
|
addCriterion("sort <", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("`status` <=", value, "status"); |
|
|
|
|
public Criteria andSortLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort <=", value, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusIn(List<Integer> values) { |
|
|
|
|
addCriterion("`status` in", values, "status"); |
|
|
|
|
public Criteria andSortIn(List<Integer> values) { |
|
|
|
|
addCriterion("sort in", values, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("`status` not in", values, "status"); |
|
|
|
|
public Criteria andSortNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("sort not in", values, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("`status` between", value1, value2, "status"); |
|
|
|
|
public Criteria andSortBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("sort between", value1, value2, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andStatusNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("`status` not between", value1, value2, "status"); |
|
|
|
|
public Criteria andSortNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("sort not between", value1, value2, "sort"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortIsNull() { |
|
|
|
|
addCriterion("sort is null"); |
|
|
|
|
public Criteria andStatusIsNull() { |
|
|
|
|
addCriterion("`status` is null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortIsNotNull() { |
|
|
|
|
addCriterion("sort is not null"); |
|
|
|
|
public Criteria andStatusIsNotNull() { |
|
|
|
|
addCriterion("`status` is not null"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort =", value, "sort"); |
|
|
|
|
public Criteria andStatusEqualTo(Integer value) { |
|
|
|
|
addCriterion("`status` =", value, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort <>", value, "sort"); |
|
|
|
|
public Criteria andStatusNotEqualTo(Integer value) { |
|
|
|
|
addCriterion("`status` <>", value, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortGreaterThan(Integer value) { |
|
|
|
|
addCriterion("sort >", value, "sort"); |
|
|
|
|
public Criteria andStatusGreaterThan(Integer value) { |
|
|
|
|
addCriterion("`status` >", value, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort >=", value, "sort"); |
|
|
|
|
public Criteria andStatusGreaterThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("`status` >=", value, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortLessThan(Integer value) { |
|
|
|
|
addCriterion("sort <", value, "sort"); |
|
|
|
|
public Criteria andStatusLessThan(Integer value) { |
|
|
|
|
addCriterion("`status` <", value, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("sort <=", value, "sort"); |
|
|
|
|
public Criteria andStatusLessThanOrEqualTo(Integer value) { |
|
|
|
|
addCriterion("`status` <=", value, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortIn(List<Integer> values) { |
|
|
|
|
addCriterion("sort in", values, "sort"); |
|
|
|
|
public Criteria andStatusIn(List<Integer> values) { |
|
|
|
|
addCriterion("`status` in", values, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("sort not in", values, "sort"); |
|
|
|
|
public Criteria andStatusNotIn(List<Integer> values) { |
|
|
|
|
addCriterion("`status` not in", values, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("sort between", value1, value2, "sort"); |
|
|
|
|
public Criteria andStatusBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("`status` between", value1, value2, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Criteria andSortNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("sort not between", value1, value2, "sort"); |
|
|
|
|
public Criteria andStatusNotBetween(Integer value1, Integer value2) { |
|
|
|
|
addCriterion("`status` not between", value1, value2, "status"); |
|
|
|
|
return (Criteria) this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|