package com.gythtglxt.dataobject;
import java.util.Date;
public class HealthRecordsDO extends HealthRecordsDOKey {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.NAME
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String name;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.GENDER
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String gender;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.BIRTH
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private Date birth;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.PHONE
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String phone;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.ADRESS_PRO
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String adressPro;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.ADRESS_CITY
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String adressCity;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.ADRESS_COUNTRY
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String adressCountry;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.ADRESS
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String adress;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.NATION
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String nation;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.BLOOD_TYPE
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String bloodType;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.EDUCATION
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String education;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.OCCUPATION
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String occupation;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.HEIGHT
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private Double height;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.WEIGHT
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private Double weight;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.BMI
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String bmi;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.DISEASE_HISTORY
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String diseaseHistory;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.ALLERGY
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String allergy;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.USER_CODE
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String userCode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.CREATER
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String creater;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.itemCreateAt
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private Date itemcreateat;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.UPDATER
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private String updater;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column tb_natmeha_health_records.itemUpdateAt
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
private Date itemupdateat;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column tb_natmeha_health_records.NAME
*
* @return the value of tb_natmeha_health_records.NAME
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column tb_natmeha_health_records.NAME
*
* @param name the value for tb_natmeha_health_records.NAME
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column tb_natmeha_health_records.GENDER
*
* @return the value of tb_natmeha_health_records.GENDER
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
public String getGender() {
return gender;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column tb_natmeha_health_records.GENDER
*
* @param gender the value for tb_natmeha_health_records.GENDER
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
public void setGender(String gender) {
this.gender = gender == null ? null : gender.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column tb_natmeha_health_records.BIRTH
*
* @return the value of tb_natmeha_health_records.BIRTH
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
public Date getBirth() {
return birth;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column tb_natmeha_health_records.BIRTH
*
* @param birth the value for tb_natmeha_health_records.BIRTH
*
* @mbg.generated Thu Nov 26 00:22:00 CST 2020
*/
public void setBirth(Date birth) {
this.birth = birth;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database colum