|
@ -1,442 +1,442 @@
|
|
package com.yihu.wlyy.entity.patient.prenatal;
|
|
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
import javax.persistence.Table;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 产检预建卡
|
|
|
|
* Created by yeshijie on 2017/6/6.
|
|
|
|
*/
|
|
|
|
@Entity
|
|
|
|
@Table(name = "wlyy_prenatal_inspector_pre_card")
|
|
|
|
public class PrenatalInspectorPreCard extends IdEntity implements Serializable{
|
|
|
|
|
|
|
|
private String code;//产检code
|
|
|
|
private String patient;//居民code
|
|
|
|
private String name;//居民姓名
|
|
|
|
private String ssc;//医保卡号
|
|
|
|
private Date birthday;//出生日期
|
|
|
|
private String mobile;//手机号码
|
|
|
|
private Date lastMenstrualDate;//末次月经时间
|
|
|
|
private String allergyHistory;//过敏史
|
|
|
|
private String maritalStatus;//婚姻情况(1未婚,2已婚,3再婚,4丧偶,5离婚,6分居)
|
|
|
|
private String residentialAddress;//现居住址
|
|
|
|
private String residentialProvince;//住址省份
|
|
|
|
private String residentialCity;//住址城市
|
|
|
|
private String residentialTown;//住址区(县)
|
|
|
|
private String permanentAddress;//户籍地址
|
|
|
|
private String permanentProvince;//户籍省份
|
|
|
|
private String permanentCity;//户籍城市
|
|
|
|
private String permanentTown;//户籍区(县)
|
|
|
|
private Date marryDate;//结婚日期
|
|
|
|
private String spouseName;//配偶姓名
|
|
|
|
private Date spouseBirthday;//配偶生日
|
|
|
|
private String spouseMobile;//配偶手机
|
|
|
|
private String eatFolate;//服用叶酸(1是,0否)
|
|
|
|
private String eatAcyeterion;//服避孕药(1是,0否)
|
|
|
|
private String smoke;//吸烟(1是,0否)
|
|
|
|
private String drink;//饮酒(1是,0否)
|
|
|
|
private String eatOtherDrugs;//服用其他药物
|
|
|
|
private String workUnit;//工作单位
|
|
|
|
private String height;//身高(cm)
|
|
|
|
private String weight;//体重(kg)
|
|
|
|
private Integer vaginalDeliveryTimes;//阴道分娩次数(次)
|
|
|
|
private Integer caesareanSectionTimes;//剖宫产次数(次)
|
|
|
|
private Integer menarcheAge;//初潮(岁)
|
|
|
|
private Integer menstrualPeriod;//经期(天)
|
|
|
|
private Integer menstrualCycle;//周期(天)
|
|
|
|
private String diseaseHistory;//疾病史
|
|
|
|
private String operationHistory;//手术史
|
|
|
|
private String otherInformation;//其他
|
|
|
|
private String effective;//是否有效(1有效,0无效)
|
|
|
|
private String status;//状态
|
|
|
|
private Date dueDate;//预产期
|
|
|
|
private String hospital;//医院
|
|
|
|
private String hospitalName;//医院名称
|
|
|
|
private String bedNo;//床位
|
|
|
|
private String orderBedTime;//预约床位时间
|
|
|
|
private String inspectionPhase;//检查阶段(1社区检查,2医院检查)
|
|
|
|
private String del;//是否删除(1正常,0废弃)
|
|
|
|
private Date czrq;//创建日期
|
|
|
|
|
|
|
|
|
|
|
|
public String getCode() {
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
|
this.code = code;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPatient() {
|
|
|
|
return patient;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPatient(String patient) {
|
|
|
|
this.patient = patient;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setName(String name) {
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSsc() {
|
|
|
|
return ssc;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSsc(String ssc) {
|
|
|
|
this.ssc = ssc;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getBirthday() {
|
|
|
|
return birthday;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBirthday(Date birthday) {
|
|
|
|
this.birthday = birthday;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMobile() {
|
|
|
|
return mobile;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMobile(String mobile) {
|
|
|
|
this.mobile = mobile;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getLastMenstrualDate() {
|
|
|
|
return lastMenstrualDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLastMenstrualDate(Date lastMenstrualDate) {
|
|
|
|
this.lastMenstrualDate = lastMenstrualDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAllergyHistory() {
|
|
|
|
return allergyHistory;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAllergyHistory(String allergyHistory) {
|
|
|
|
this.allergyHistory = allergyHistory;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMaritalStatus() {
|
|
|
|
return maritalStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMaritalStatus(String maritalStatus) {
|
|
|
|
this.maritalStatus = maritalStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getResidentialAddress() {
|
|
|
|
return residentialAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setResidentialAddress(String residentialAddress) {
|
|
|
|
this.residentialAddress = residentialAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getResidentialProvince() {
|
|
|
|
return residentialProvince;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setResidentialProvince(String residentialProvince) {
|
|
|
|
this.residentialProvince = residentialProvince;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getResidentialCity() {
|
|
|
|
return residentialCity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setResidentialCity(String residentialCity) {
|
|
|
|
this.residentialCity = residentialCity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getResidentialTown() {
|
|
|
|
return residentialTown;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setResidentialTown(String residentialTown) {
|
|
|
|
this.residentialTown = residentialTown;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPermanentAddress() {
|
|
|
|
return permanentAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPermanentAddress(String permanentAddress) {
|
|
|
|
this.permanentAddress = permanentAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPermanentProvince() {
|
|
|
|
return permanentProvince;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPermanentProvince(String permanentProvince) {
|
|
|
|
this.permanentProvince = permanentProvince;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPermanentCity() {
|
|
|
|
return permanentCity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPermanentCity(String permanentCity) {
|
|
|
|
this.permanentCity = permanentCity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPermanentTown() {
|
|
|
|
return permanentTown;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPermanentTown(String permanentTown) {
|
|
|
|
this.permanentTown = permanentTown;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getMarryDate() {
|
|
|
|
return marryDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMarryDate(Date marryDate) {
|
|
|
|
this.marryDate = marryDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSpouseName() {
|
|
|
|
return spouseName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSpouseName(String spouseName) {
|
|
|
|
this.spouseName = spouseName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getSpouseBirthday() {
|
|
|
|
return spouseBirthday;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSpouseBirthday(Date spouseBirthday) {
|
|
|
|
this.spouseBirthday = spouseBirthday;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSpouseMobile() {
|
|
|
|
return spouseMobile;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSpouseMobile(String spouseMobile) {
|
|
|
|
this.spouseMobile = spouseMobile;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEatFolate() {
|
|
|
|
return eatFolate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEatFolate(String eatFolate) {
|
|
|
|
this.eatFolate = eatFolate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEatAcyeterion() {
|
|
|
|
return eatAcyeterion;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEatAcyeterion(String eatAcyeterion) {
|
|
|
|
this.eatAcyeterion = eatAcyeterion;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSmoke() {
|
|
|
|
return smoke;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSmoke(String smoke) {
|
|
|
|
this.smoke = smoke;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDrink() {
|
|
|
|
return drink;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDrink(String drink) {
|
|
|
|
this.drink = drink;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEatOtherDrugs() {
|
|
|
|
return eatOtherDrugs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEatOtherDrugs(String eatOtherDrugs) {
|
|
|
|
this.eatOtherDrugs = eatOtherDrugs;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getWorkUnit() {
|
|
|
|
return workUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setWorkUnit(String workUnit) {
|
|
|
|
this.workUnit = workUnit;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getHeight() {
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setHeight(String height) {
|
|
|
|
this.height = height;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getWeight() {
|
|
|
|
return weight;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setWeight(String weight) {
|
|
|
|
this.weight = weight;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getVaginalDeliveryTimes() {
|
|
|
|
return vaginalDeliveryTimes;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setVaginalDeliveryTimes(Integer vaginalDeliveryTimes) {
|
|
|
|
this.vaginalDeliveryTimes = vaginalDeliveryTimes;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getCaesareanSectionTimes() {
|
|
|
|
return caesareanSectionTimes;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCaesareanSectionTimes(Integer caesareanSectionTimes) {
|
|
|
|
this.caesareanSectionTimes = caesareanSectionTimes;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getMenarcheAge() {
|
|
|
|
return menarcheAge;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMenarcheAge(Integer menarcheAge) {
|
|
|
|
this.menarcheAge = menarcheAge;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getMenstrualPeriod() {
|
|
|
|
return menstrualPeriod;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMenstrualPeriod(Integer menstrualPeriod) {
|
|
|
|
this.menstrualPeriod = menstrualPeriod;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getMenstrualCycle() {
|
|
|
|
return menstrualCycle;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMenstrualCycle(Integer menstrualCycle) {
|
|
|
|
this.menstrualCycle = menstrualCycle;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDiseaseHistory() {
|
|
|
|
return diseaseHistory;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDiseaseHistory(String diseaseHistory) {
|
|
|
|
this.diseaseHistory = diseaseHistory;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOperationHistory() {
|
|
|
|
return operationHistory;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOperationHistory(String operationHistory) {
|
|
|
|
this.operationHistory = operationHistory;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOtherInformation() {
|
|
|
|
return otherInformation;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOtherInformation(String otherInformation) {
|
|
|
|
this.otherInformation = otherInformation;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getEffective() {
|
|
|
|
return effective;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEffective(String effective) {
|
|
|
|
this.effective = effective;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getStatus() {
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setStatus(String status) {
|
|
|
|
this.status = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getDueDate() {
|
|
|
|
return dueDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDueDate(Date dueDate) {
|
|
|
|
this.dueDate = dueDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getHospital() {
|
|
|
|
return hospital;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setHospital(String hospital) {
|
|
|
|
this.hospital = hospital;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getHospitalName() {
|
|
|
|
return hospitalName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setHospitalName(String hospitalName) {
|
|
|
|
this.hospitalName = hospitalName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getBedNo() {
|
|
|
|
return bedNo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBedNo(String bedNo) {
|
|
|
|
this.bedNo = bedNo;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOrderBedTime() {
|
|
|
|
return orderBedTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOrderBedTime(String orderBedTime) {
|
|
|
|
this.orderBedTime = orderBedTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getInspectionPhase() {
|
|
|
|
return inspectionPhase;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setInspectionPhase(String inspectionPhase) {
|
|
|
|
this.inspectionPhase = inspectionPhase;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDel() {
|
|
|
|
return del;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDel(String del) {
|
|
|
|
this.del = del;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getCzrq() {
|
|
|
|
return czrq;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCzrq(Date czrq) {
|
|
|
|
this.czrq = czrq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
//package com.yihu.wlyy.entity.patient.prenatal;
|
|
|
|
//
|
|
|
|
//import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
//
|
|
|
|
//import javax.persistence.Entity;
|
|
|
|
//import javax.persistence.Table;
|
|
|
|
//import java.io.Serializable;
|
|
|
|
//import java.util.Date;
|
|
|
|
//
|
|
|
|
///**
|
|
|
|
// * 产检预建卡
|
|
|
|
// * Created by yeshijie on 2017/6/6.
|
|
|
|
// */
|
|
|
|
//@Entity
|
|
|
|
//@Table(name = "wlyy_prenatal_inspector_pre_card")
|
|
|
|
//public class PrenatalInspectorPreCard extends IdEntity implements Serializable{
|
|
|
|
//
|
|
|
|
// private String code;//产检code
|
|
|
|
// private String patient;//居民code
|
|
|
|
// private String name;//居民姓名
|
|
|
|
// private String ssc;//医保卡号
|
|
|
|
// private Date birthday;//出生日期
|
|
|
|
// private String mobile;//手机号码
|
|
|
|
// private Date lastMenstrualDate;//末次月经时间
|
|
|
|
// private String allergyHistory;//过敏史
|
|
|
|
// private String maritalStatus;//婚姻情况(1未婚,2已婚,3再婚,4丧偶,5离婚,6分居)
|
|
|
|
// private String residentialAddress;//现居住址
|
|
|
|
// private String residentialProvince;//住址省份
|
|
|
|
// private String residentialCity;//住址城市
|
|
|
|
// private String residentialTown;//住址区(县)
|
|
|
|
// private String permanentAddress;//户籍地址
|
|
|
|
// private String permanentProvince;//户籍省份
|
|
|
|
// private String permanentCity;//户籍城市
|
|
|
|
// private String permanentTown;//户籍区(县)
|
|
|
|
// private Date marryDate;//结婚日期
|
|
|
|
// private String spouseName;//配偶姓名
|
|
|
|
// private Date spouseBirthday;//配偶生日
|
|
|
|
// private String spouseMobile;//配偶手机
|
|
|
|
// private String eatFolate;//服用叶酸(1是,0否)
|
|
|
|
// private String eatAcyeterion;//服避孕药(1是,0否)
|
|
|
|
// private String smoke;//吸烟(1是,0否)
|
|
|
|
// private String drink;//饮酒(1是,0否)
|
|
|
|
// private String eatOtherDrugs;//服用其他药物
|
|
|
|
// private String workUnit;//工作单位
|
|
|
|
// private String height;//身高(cm)
|
|
|
|
// private String weight;//体重(kg)
|
|
|
|
// private Integer vaginalDeliveryTimes;//阴道分娩次数(次)
|
|
|
|
// private Integer caesareanSectionTimes;//剖宫产次数(次)
|
|
|
|
// private Integer menarcheAge;//初潮(岁)
|
|
|
|
// private Integer menstrualPeriod;//经期(天)
|
|
|
|
// private Integer menstrualCycle;//周期(天)
|
|
|
|
// private String diseaseHistory;//疾病史
|
|
|
|
// private String operationHistory;//手术史
|
|
|
|
// private String otherInformation;//其他
|
|
|
|
// private String effective;//是否有效(1有效,0无效)
|
|
|
|
// private String status;//状态
|
|
|
|
// private Date dueDate;//预产期
|
|
|
|
// private String hospital;//医院
|
|
|
|
// private String hospitalName;//医院名称
|
|
|
|
// private String bedNo;//床位
|
|
|
|
// private String orderBedTime;//预约床位时间
|
|
|
|
// private String inspectionPhase;//检查阶段(1社区检查,2医院检查)
|
|
|
|
// private String del;//是否删除(1正常,0废弃)
|
|
|
|
// private Date czrq;//创建日期
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// public String getCode() {
|
|
|
|
// return code;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setCode(String code) {
|
|
|
|
// this.code = code;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getPatient() {
|
|
|
|
// return patient;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setPatient(String patient) {
|
|
|
|
// this.patient = patient;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getName() {
|
|
|
|
// return name;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setName(String name) {
|
|
|
|
// this.name = name;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getSsc() {
|
|
|
|
// return ssc;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setSsc(String ssc) {
|
|
|
|
// this.ssc = ssc;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Date getBirthday() {
|
|
|
|
// return birthday;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setBirthday(Date birthday) {
|
|
|
|
// this.birthday = birthday;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getMobile() {
|
|
|
|
// return mobile;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setMobile(String mobile) {
|
|
|
|
// this.mobile = mobile;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Date getLastMenstrualDate() {
|
|
|
|
// return lastMenstrualDate;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setLastMenstrualDate(Date lastMenstrualDate) {
|
|
|
|
// this.lastMenstrualDate = lastMenstrualDate;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getAllergyHistory() {
|
|
|
|
// return allergyHistory;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setAllergyHistory(String allergyHistory) {
|
|
|
|
// this.allergyHistory = allergyHistory;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getMaritalStatus() {
|
|
|
|
// return maritalStatus;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setMaritalStatus(String maritalStatus) {
|
|
|
|
// this.maritalStatus = maritalStatus;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getResidentialAddress() {
|
|
|
|
// return residentialAddress;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setResidentialAddress(String residentialAddress) {
|
|
|
|
// this.residentialAddress = residentialAddress;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getResidentialProvince() {
|
|
|
|
// return residentialProvince;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setResidentialProvince(String residentialProvince) {
|
|
|
|
// this.residentialProvince = residentialProvince;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getResidentialCity() {
|
|
|
|
// return residentialCity;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setResidentialCity(String residentialCity) {
|
|
|
|
// this.residentialCity = residentialCity;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getResidentialTown() {
|
|
|
|
// return residentialTown;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setResidentialTown(String residentialTown) {
|
|
|
|
// this.residentialTown = residentialTown;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getPermanentAddress() {
|
|
|
|
// return permanentAddress;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setPermanentAddress(String permanentAddress) {
|
|
|
|
// this.permanentAddress = permanentAddress;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getPermanentProvince() {
|
|
|
|
// return permanentProvince;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setPermanentProvince(String permanentProvince) {
|
|
|
|
// this.permanentProvince = permanentProvince;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getPermanentCity() {
|
|
|
|
// return permanentCity;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setPermanentCity(String permanentCity) {
|
|
|
|
// this.permanentCity = permanentCity;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getPermanentTown() {
|
|
|
|
// return permanentTown;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setPermanentTown(String permanentTown) {
|
|
|
|
// this.permanentTown = permanentTown;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Date getMarryDate() {
|
|
|
|
// return marryDate;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setMarryDate(Date marryDate) {
|
|
|
|
// this.marryDate = marryDate;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getSpouseName() {
|
|
|
|
// return spouseName;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setSpouseName(String spouseName) {
|
|
|
|
// this.spouseName = spouseName;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Date getSpouseBirthday() {
|
|
|
|
// return spouseBirthday;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setSpouseBirthday(Date spouseBirthday) {
|
|
|
|
// this.spouseBirthday = spouseBirthday;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getSpouseMobile() {
|
|
|
|
// return spouseMobile;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setSpouseMobile(String spouseMobile) {
|
|
|
|
// this.spouseMobile = spouseMobile;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getEatFolate() {
|
|
|
|
// return eatFolate;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setEatFolate(String eatFolate) {
|
|
|
|
// this.eatFolate = eatFolate;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getEatAcyeterion() {
|
|
|
|
// return eatAcyeterion;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setEatAcyeterion(String eatAcyeterion) {
|
|
|
|
// this.eatAcyeterion = eatAcyeterion;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getSmoke() {
|
|
|
|
// return smoke;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setSmoke(String smoke) {
|
|
|
|
// this.smoke = smoke;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getDrink() {
|
|
|
|
// return drink;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setDrink(String drink) {
|
|
|
|
// this.drink = drink;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getEatOtherDrugs() {
|
|
|
|
// return eatOtherDrugs;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setEatOtherDrugs(String eatOtherDrugs) {
|
|
|
|
// this.eatOtherDrugs = eatOtherDrugs;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getWorkUnit() {
|
|
|
|
// return workUnit;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setWorkUnit(String workUnit) {
|
|
|
|
// this.workUnit = workUnit;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getHeight() {
|
|
|
|
// return height;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setHeight(String height) {
|
|
|
|
// this.height = height;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getWeight() {
|
|
|
|
// return weight;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setWeight(String weight) {
|
|
|
|
// this.weight = weight;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Integer getVaginalDeliveryTimes() {
|
|
|
|
// return vaginalDeliveryTimes;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setVaginalDeliveryTimes(Integer vaginalDeliveryTimes) {
|
|
|
|
// this.vaginalDeliveryTimes = vaginalDeliveryTimes;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Integer getCaesareanSectionTimes() {
|
|
|
|
// return caesareanSectionTimes;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setCaesareanSectionTimes(Integer caesareanSectionTimes) {
|
|
|
|
// this.caesareanSectionTimes = caesareanSectionTimes;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Integer getMenarcheAge() {
|
|
|
|
// return menarcheAge;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setMenarcheAge(Integer menarcheAge) {
|
|
|
|
// this.menarcheAge = menarcheAge;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Integer getMenstrualPeriod() {
|
|
|
|
// return menstrualPeriod;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setMenstrualPeriod(Integer menstrualPeriod) {
|
|
|
|
// this.menstrualPeriod = menstrualPeriod;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Integer getMenstrualCycle() {
|
|
|
|
// return menstrualCycle;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setMenstrualCycle(Integer menstrualCycle) {
|
|
|
|
// this.menstrualCycle = menstrualCycle;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getDiseaseHistory() {
|
|
|
|
// return diseaseHistory;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setDiseaseHistory(String diseaseHistory) {
|
|
|
|
// this.diseaseHistory = diseaseHistory;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getOperationHistory() {
|
|
|
|
// return operationHistory;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setOperationHistory(String operationHistory) {
|
|
|
|
// this.operationHistory = operationHistory;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getOtherInformation() {
|
|
|
|
// return otherInformation;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setOtherInformation(String otherInformation) {
|
|
|
|
// this.otherInformation = otherInformation;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getEffective() {
|
|
|
|
// return effective;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setEffective(String effective) {
|
|
|
|
// this.effective = effective;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getStatus() {
|
|
|
|
// return status;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setStatus(String status) {
|
|
|
|
// this.status = status;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Date getDueDate() {
|
|
|
|
// return dueDate;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setDueDate(Date dueDate) {
|
|
|
|
// this.dueDate = dueDate;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getHospital() {
|
|
|
|
// return hospital;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setHospital(String hospital) {
|
|
|
|
// this.hospital = hospital;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getHospitalName() {
|
|
|
|
// return hospitalName;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setHospitalName(String hospitalName) {
|
|
|
|
// this.hospitalName = hospitalName;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getBedNo() {
|
|
|
|
// return bedNo;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setBedNo(String bedNo) {
|
|
|
|
// this.bedNo = bedNo;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getOrderBedTime() {
|
|
|
|
// return orderBedTime;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setOrderBedTime(String orderBedTime) {
|
|
|
|
// this.orderBedTime = orderBedTime;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getInspectionPhase() {
|
|
|
|
// return inspectionPhase;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setInspectionPhase(String inspectionPhase) {
|
|
|
|
// this.inspectionPhase = inspectionPhase;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public String getDel() {
|
|
|
|
// return del;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setDel(String del) {
|
|
|
|
// this.del = del;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public Date getCzrq() {
|
|
|
|
// return czrq;
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// public void setCzrq(Date czrq) {
|
|
|
|
// this.czrq = czrq;
|
|
|
|
// }
|
|
|
|
//}
|