|
|
@ -486,6 +486,66 @@ public class HealthRecordsExample { |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatIsNull() { |
|
|
|
addCriterion("animal_heat is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatIsNotNull() { |
|
|
|
addCriterion("animal_heat is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatEqualTo(BigDecimal value) { |
|
|
|
addCriterion("animal_heat =", value, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatNotEqualTo(BigDecimal value) { |
|
|
|
addCriterion("animal_heat <>", value, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatGreaterThan(BigDecimal value) { |
|
|
|
addCriterion("animal_heat >", value, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatGreaterThanOrEqualTo(BigDecimal value) { |
|
|
|
addCriterion("animal_heat >=", value, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatLessThan(BigDecimal value) { |
|
|
|
addCriterion("animal_heat <", value, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatLessThanOrEqualTo(BigDecimal value) { |
|
|
|
addCriterion("animal_heat <=", value, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatIn(List<BigDecimal> values) { |
|
|
|
addCriterion("animal_heat in", values, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatNotIn(List<BigDecimal> values) { |
|
|
|
addCriterion("animal_heat not in", values, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatBetween(BigDecimal value1, BigDecimal value2) { |
|
|
|
addCriterion("animal_heat between", value1, value2, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatNotBetween(BigDecimal value1, BigDecimal value2) { |
|
|
|
addCriterion("animal_heat not between", value1, value2, "animalHeat"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHospitalIsNull() { |
|
|
|
addCriterion("hospital is null"); |
|
|
|
return (Criteria) this; |
|
|
@ -676,63 +736,393 @@ public class HealthRecordsExample { |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatIsNull() { |
|
|
|
addCriterion("animal_heat is null"); |
|
|
|
public Criteria andTouchOverseasIsNull() { |
|
|
|
addCriterion("touch_overseas is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatIsNotNull() { |
|
|
|
addCriterion("animal_heat is not null"); |
|
|
|
public Criteria andTouchOverseasIsNotNull() { |
|
|
|
addCriterion("touch_overseas is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatEqualTo(BigDecimal value) { |
|
|
|
addCriterion("animal_heat =", value, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasEqualTo(Byte value) { |
|
|
|
addCriterion("touch_overseas =", value, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatNotEqualTo(BigDecimal value) { |
|
|
|
addCriterion("animal_heat <>", value, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasNotEqualTo(Byte value) { |
|
|
|
addCriterion("touch_overseas <>", value, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatGreaterThan(BigDecimal value) { |
|
|
|
addCriterion("animal_heat >", value, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasGreaterThan(Byte value) { |
|
|
|
addCriterion("touch_overseas >", value, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatGreaterThanOrEqualTo(BigDecimal value) { |
|
|
|
addCriterion("animal_heat >=", value, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasGreaterThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("touch_overseas >=", value, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatLessThan(BigDecimal value) { |
|
|
|
addCriterion("animal_heat <", value, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasLessThan(Byte value) { |
|
|
|
addCriterion("touch_overseas <", value, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatLessThanOrEqualTo(BigDecimal value) { |
|
|
|
addCriterion("animal_heat <=", value, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasLessThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("touch_overseas <=", value, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatIn(List<BigDecimal> values) { |
|
|
|
addCriterion("animal_heat in", values, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasIn(List<Byte> values) { |
|
|
|
addCriterion("touch_overseas in", values, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatNotIn(List<BigDecimal> values) { |
|
|
|
addCriterion("animal_heat not in", values, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasNotIn(List<Byte> values) { |
|
|
|
addCriterion("touch_overseas not in", values, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatBetween(BigDecimal value1, BigDecimal value2) { |
|
|
|
addCriterion("animal_heat between", value1, value2, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("touch_overseas between", value1, value2, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andAnimalHeatNotBetween(BigDecimal value1, BigDecimal value2) { |
|
|
|
addCriterion("animal_heat not between", value1, value2, "animalHeat"); |
|
|
|
public Criteria andTouchOverseasNotBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("touch_overseas not between", value1, value2, "touchOverseas"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationIsNull() { |
|
|
|
addCriterion("school_location is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationIsNotNull() { |
|
|
|
addCriterion("school_location is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationEqualTo(Byte value) { |
|
|
|
addCriterion("school_location =", value, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationNotEqualTo(Byte value) { |
|
|
|
addCriterion("school_location <>", value, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationGreaterThan(Byte value) { |
|
|
|
addCriterion("school_location >", value, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationGreaterThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("school_location >=", value, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationLessThan(Byte value) { |
|
|
|
addCriterion("school_location <", value, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationLessThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("school_location <=", value, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationIn(List<Byte> values) { |
|
|
|
addCriterion("school_location in", values, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationNotIn(List<Byte> values) { |
|
|
|
addCriterion("school_location not in", values, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("school_location between", value1, value2, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andSchoolLocationNotBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("school_location not between", value1, value2, "schoolLocation"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameIsNull() { |
|
|
|
addCriterion("emergency_name is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameIsNotNull() { |
|
|
|
addCriterion("emergency_name is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameEqualTo(String value) { |
|
|
|
addCriterion("emergency_name =", value, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameNotEqualTo(String value) { |
|
|
|
addCriterion("emergency_name <>", value, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameGreaterThan(String value) { |
|
|
|
addCriterion("emergency_name >", value, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameGreaterThanOrEqualTo(String value) { |
|
|
|
addCriterion("emergency_name >=", value, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameLessThan(String value) { |
|
|
|
addCriterion("emergency_name <", value, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameLessThanOrEqualTo(String value) { |
|
|
|
addCriterion("emergency_name <=", value, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameLike(String value) { |
|
|
|
addCriterion("emergency_name like", value, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameNotLike(String value) { |
|
|
|
addCriterion("emergency_name not like", value, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameIn(List<String> values) { |
|
|
|
addCriterion("emergency_name in", values, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameNotIn(List<String> values) { |
|
|
|
addCriterion("emergency_name not in", values, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameBetween(String value1, String value2) { |
|
|
|
addCriterion("emergency_name between", value1, value2, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyNameNotBetween(String value1, String value2) { |
|
|
|
addCriterion("emergency_name not between", value1, value2, "emergencyName"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneIsNull() { |
|
|
|
addCriterion("emergency_phone is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneIsNotNull() { |
|
|
|
addCriterion("emergency_phone is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneEqualTo(String value) { |
|
|
|
addCriterion("emergency_phone =", value, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneNotEqualTo(String value) { |
|
|
|
addCriterion("emergency_phone <>", value, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneGreaterThan(String value) { |
|
|
|
addCriterion("emergency_phone >", value, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneGreaterThanOrEqualTo(String value) { |
|
|
|
addCriterion("emergency_phone >=", value, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneLessThan(String value) { |
|
|
|
addCriterion("emergency_phone <", value, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneLessThanOrEqualTo(String value) { |
|
|
|
addCriterion("emergency_phone <=", value, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneLike(String value) { |
|
|
|
addCriterion("emergency_phone like", value, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneNotLike(String value) { |
|
|
|
addCriterion("emergency_phone not like", value, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneIn(List<String> values) { |
|
|
|
addCriterion("emergency_phone in", values, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneNotIn(List<String> values) { |
|
|
|
addCriterion("emergency_phone not in", values, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneBetween(String value1, String value2) { |
|
|
|
addCriterion("emergency_phone between", value1, value2, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andEmergencyPhoneNotBetween(String value1, String value2) { |
|
|
|
addCriterion("emergency_phone not between", value1, value2, "emergencyPhone"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkIsNull() { |
|
|
|
addCriterion("remark is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkIsNotNull() { |
|
|
|
addCriterion("remark is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkEqualTo(String value) { |
|
|
|
addCriterion("remark =", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkNotEqualTo(String value) { |
|
|
|
addCriterion("remark <>", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkGreaterThan(String value) { |
|
|
|
addCriterion("remark >", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkGreaterThanOrEqualTo(String value) { |
|
|
|
addCriterion("remark >=", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkLessThan(String value) { |
|
|
|
addCriterion("remark <", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkLessThanOrEqualTo(String value) { |
|
|
|
addCriterion("remark <=", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkLike(String value) { |
|
|
|
addCriterion("remark like", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkNotLike(String value) { |
|
|
|
addCriterion("remark not like", value, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkIn(List<String> values) { |
|
|
|
addCriterion("remark in", values, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkNotIn(List<String> values) { |
|
|
|
addCriterion("remark not in", values, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkBetween(String value1, String value2) { |
|
|
|
addCriterion("remark between", value1, value2, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andRemarkNotBetween(String value1, String value2) { |
|
|
|
addCriterion("remark not between", value1, value2, "remark"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementIsNull() { |
|
|
|
addCriterion("health_agreement is null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementIsNotNull() { |
|
|
|
addCriterion("health_agreement is not null"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementEqualTo(Byte value) { |
|
|
|
addCriterion("health_agreement =", value, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementNotEqualTo(Byte value) { |
|
|
|
addCriterion("health_agreement <>", value, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementGreaterThan(Byte value) { |
|
|
|
addCriterion("health_agreement >", value, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementGreaterThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("health_agreement >=", value, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementLessThan(Byte value) { |
|
|
|
addCriterion("health_agreement <", value, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementLessThanOrEqualTo(Byte value) { |
|
|
|
addCriterion("health_agreement <=", value, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementIn(List<Byte> values) { |
|
|
|
addCriterion("health_agreement in", values, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementNotIn(List<Byte> values) { |
|
|
|
addCriterion("health_agreement not in", values, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("health_agreement between", value1, value2, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|
public Criteria andHealthAgreementNotBetween(Byte value1, Byte value2) { |
|
|
|
addCriterion("health_agreement not between", value1, value2, "healthAgreement"); |
|
|
|
return (Criteria) this; |
|
|
|
} |
|
|
|
|
|
|
|