|
|
|
@ -2301,6 +2301,396 @@ public class AchAchievementExample { |
|
|
|
addCriterion("impact_factor not between", value1, value2, "impactFactor"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameIsNull() { |
|
|
|
addCriterion("name is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameIsNotNull() { |
|
|
|
addCriterion("name is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameEqualTo(String value) { |
|
|
|
addCriterion("name =", value, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameNotEqualTo(String value) { |
|
|
|
addCriterion("name <>", value, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameGreaterThan(String value) { |
|
|
|
addCriterion("name >", value, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameGreaterThanOrEqualTo(String value) { |
|
|
|
addCriterion("name >=", value, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameLessThan(String value) { |
|
|
|
addCriterion("name <", value, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameLessThanOrEqualTo(String value) { |
|
|
|
addCriterion("name <=", value, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameLike(String value) { |
|
|
|
addCriterion("name like", value, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameNotLike(String value) { |
|
|
|
addCriterion("name not like", value, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameIn(List<String> values) { |
|
|
|
addCriterion("name in", values, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameNotIn(List<String> values) { |
|
|
|
addCriterion("name not in", values, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameBetween(String value1, String value2) { |
|
|
|
addCriterion("name between", value1, value2, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andNameNotBetween(String value1, String value2) { |
|
|
|
addCriterion("name not between", value1, value2, "name"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexIsNull() { |
|
|
|
addCriterion("sex is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexIsNotNull() { |
|
|
|
addCriterion("sex is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexEqualTo(String value) { |
|
|
|
addCriterion("sex =", value, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexNotEqualTo(String value) { |
|
|
|
addCriterion("sex <>", value, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexGreaterThan(String value) { |
|
|
|
addCriterion("sex >", value, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexGreaterThanOrEqualTo(String value) { |
|
|
|
addCriterion("sex >=", value, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexLessThan(String value) { |
|
|
|
addCriterion("sex <", value, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexLessThanOrEqualTo(String value) { |
|
|
|
addCriterion("sex <=", value, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexLike(String value) { |
|
|
|
addCriterion("sex like", value, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexNotLike(String value) { |
|
|
|
addCriterion("sex not like", value, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexIn(List<String> values) { |
|
|
|
addCriterion("sex in", values, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexNotIn(List<String> values) { |
|
|
|
addCriterion("sex not in", values, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexBetween(String value1, String value2) { |
|
|
|
addCriterion("sex between", value1, value2, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSexNotBetween(String value1, String value2) { |
|
|
|
addCriterion("sex not between", value1, value2, "sex"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeIsNull() { |
|
|
|
addCriterion("age is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeIsNotNull() { |
|
|
|
addCriterion("age is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeEqualTo(Integer value) { |
|
|
|
addCriterion("age =", value, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeNotEqualTo(Integer value) { |
|
|
|
addCriterion("age <>", value, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeGreaterThan(Integer value) { |
|
|
|
addCriterion("age >", value, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeGreaterThanOrEqualTo(Integer value) { |
|
|
|
addCriterion("age >=", value, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeLessThan(Integer value) { |
|
|
|
addCriterion("age <", value, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeLessThanOrEqualTo(Integer value) { |
|
|
|
addCriterion("age <=", value, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeIn(List<Integer> values) { |
|
|
|
addCriterion("age in", values, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeNotIn(List<Integer> values) { |
|
|
|
addCriterion("age not in", values, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeBetween(Integer value1, Integer value2) { |
|
|
|
addCriterion("age between", value1, value2, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAgeNotBetween(Integer value1, Integer value2) { |
|
|
|
addCriterion("age not between", value1, value2, "age"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsIsNull() { |
|
|
|
addCriterion("projects is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsIsNotNull() { |
|
|
|
addCriterion("projects is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsEqualTo(String value) { |
|
|
|
addCriterion("projects =", value, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsNotEqualTo(String value) { |
|
|
|
addCriterion("projects <>", value, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsGreaterThan(String value) { |
|
|
|
addCriterion("projects >", value, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsGreaterThanOrEqualTo(String value) { |
|
|
|
addCriterion("projects >=", value, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsLessThan(String value) { |
|
|
|
addCriterion("projects <", value, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsLessThanOrEqualTo(String value) { |
|
|
|
addCriterion("projects <=", value, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsLike(String value) { |
|
|
|
addCriterion("projects like", value, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsNotLike(String value) { |
|
|
|
addCriterion("projects not like", value, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsIn(List<String> values) { |
|
|
|
addCriterion("projects in", values, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsNotIn(List<String> values) { |
|
|
|
addCriterion("projects not in", values, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsBetween(String value1, String value2) { |
|
|
|
addCriterion("projects between", value1, value2, "projects"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andProjectsNotBetween(String value1, String value2) { |
|
|
|
addCriterion("projects not between", value1, value2, "projects"); |
|
|
|
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(Byte value) { |
|
|
|
addCriterion("type =", value, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTypeNotEqualTo(Byte value) { |
|
|
|
addCriterion("type <>", value, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTypeGreaterThan(Byte value) { |
|
|
|
addCriterion("type >", value, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTypeGreaterThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("type >=", value, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTypeLessThan(Byte value) { |
|
|
|
addCriterion("type <", value, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTypeLessThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("type <=", value, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTypeIn(List<Byte> values) { |
|
|
|
addCriterion("type in", values, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTypeNotIn(List<Byte> values) { |
|
|
|
addCriterion("type not in", values, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTypeBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("type between", value1, value2, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andTypeNotBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("type not between", value1, value2, "type"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusIsNull() { |
|
|
|
addCriterion("status is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusIsNotNull() { |
|
|
|
addCriterion("status is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusEqualTo(Byte value) { |
|
|
|
addCriterion("status =", value, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusNotEqualTo(Byte value) { |
|
|
|
addCriterion("status <>", value, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusGreaterThan(Byte value) { |
|
|
|
addCriterion("status >", value, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusGreaterThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("status >=", value, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusLessThan(Byte value) { |
|
|
|
addCriterion("status <", value, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusLessThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("status <=", value, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusIn(List<Byte> values) { |
|
|
|
addCriterion("status in", values, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusNotIn(List<Byte> values) { |
|
|
|
addCriterion("status not in", values, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("status between", value1, value2, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andStatusNotBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("status not between", value1, value2, "status"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria { |
|
|
|
|