| | |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusEqualTo(Boolean value) { |
| | | public Criteria andStatusEqualTo(Integer value) { |
| | | addCriterion("status =", value, "status"); |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusNotEqualTo(Boolean value) { |
| | | public Criteria andStatusNotEqualTo(Integer value) { |
| | | addCriterion("status <>", value, "status"); |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusGreaterThan(Boolean value) { |
| | | public Criteria andStatusGreaterThan(Integer value) { |
| | | addCriterion("status >", value, "status"); |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusGreaterThanOrEqualTo(Boolean value) { |
| | | public Criteria andStatusGreaterThanOrEqualTo(Integer value) { |
| | | addCriterion("status >=", value, "status"); |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusLessThan(Boolean value) { |
| | | public Criteria andStatusLessThan(Integer value) { |
| | | addCriterion("status <", value, "status"); |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusLessThanOrEqualTo(Boolean value) { |
| | | public Criteria andStatusLessThanOrEqualTo(Integer value) { |
| | | addCriterion("status <=", value, "status"); |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusIn(List<Boolean> values) { |
| | | public Criteria andStatusIn(List<Integer> values) { |
| | | addCriterion("status in", values, "status"); |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusNotIn(List<Boolean> values) { |
| | | public Criteria andStatusNotIn(List<Integer> values) { |
| | | addCriterion("status not in", values, "status"); |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusBetween(Boolean value1, Boolean value2) { |
| | | public Criteria andStatusBetween(Integer value1, Integer value2) { |
| | | addCriterion("status between", value1, value2, "status"); |
| | | return (Criteria) this; |
| | | } |
| | | |
| | | public Criteria andStatusNotBetween(Boolean value1, Boolean value2) { |
| | | public Criteria andStatusNotBetween(Integer value1, Integer value2) { |
| | | addCriterion("status not between", value1, value2, "status"); |
| | | return (Criteria) this; |
| | | } |