From cca93b69eb8bbd76ba11eeb15c0edab5d2476ef8 Mon Sep 17 00:00:00 2001 From: jiangjiazhi Date: Fri, 31 Mar 2017 18:03:07 +0800 Subject: [PATCH] c --- .../hospital/entity/diagnose/DiagnoseAssit.java | 504 ++++++++++++++++++++ .../hospital/entity/diagnose/DiagnoseInfo.java | 518 +++++++++++++++++++++ 2 files changed, 1022 insertions(+) create mode 100644 parent/hospital.mac/src/main/java/com/lyms/hospital/entity/diagnose/DiagnoseAssit.java create mode 100644 parent/hospital.mac/src/main/java/com/lyms/hospital/entity/diagnose/DiagnoseInfo.java diff --git a/parent/hospital.mac/src/main/java/com/lyms/hospital/entity/diagnose/DiagnoseAssit.java b/parent/hospital.mac/src/main/java/com/lyms/hospital/entity/diagnose/DiagnoseAssit.java new file mode 100644 index 0000000..094c748 --- /dev/null +++ b/parent/hospital.mac/src/main/java/com/lyms/hospital/entity/diagnose/DiagnoseAssit.java @@ -0,0 +1,504 @@ +package com.lyms.hospital.entity.diagnose; + +import java.io.Serializable; + +import com.baomidou.mybatisplus.annotations.TableField; +import com.baomidou.mybatisplus.annotations.TableId; +import com.baomidou.mybatisplus.annotations.TableName; + +/** + *

+ * 辅助检查项 + *

+ * + * @author jiangjiazhi + * @since 2017-03-29 + */ +@TableName("DIAGNOSE_ASSIT") +public class DiagnoseAssit implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * + */ + @TableId(value = "ID") + private String id; + /** + * 诊断ID,或婚前检查ID + */ + @TableField(value = "DIAGNOSE_ID") + private String diagnoseId; + /** + * 血红蛋白 + */ + @TableField(value = "BLOODROUTINE_XHDB") + private Integer bloodroutineXhdb; + /** + * 白细胞计数 + */ + @TableField(value = "BLOODROUTINE_BXBJS") + private Integer bloodroutineBxbjs; + /** + * 血小板计数 + */ + @TableField(value = "BLOODROUTINE_XXBJS") + private Integer bloodroutineXxbjs; + /** + * 其他 + */ + @TableField(value = "BLOODROUTINE_OTHER") + private String bloodroutineOther; + /** + * 尿蛋白 + */ + @TableField(value = "PISS_NDB") + private String pissNdb; + /** + * 尿糖 + */ + @TableField(value = "PISS_NT") + private String pissNt; + /** + * 尿酮体 + */ + @TableField(value = "PISS_NTT") + private String pissNtt; + /** + * 尿潜血 + */ + @TableField(value = "PISS_NQX") + private String pissNqx; + /** + * 其他 + */ + @TableField(value = "PISS_OTHER") + private String pissOther; + /** + * 血型 + */ + @TableField(value = "BLOODTYPE") + private String bloodtype; + /** + * RH血型 + */ + @TableField(value = "BLOODTYPE_RH") + private Integer bloodtypeRh; + /** + * 血糖 + */ + @TableField(value = "BLOODTYPE_XT") + private String bloodtypeXt; + /** + * 血清谷丙转氨酶 + */ + @TableField(value = "LIVER_XQGBZAM") + private Integer liverXqgbzam; + /** + * 血清谷草转氨酶 + */ + @TableField(value = "LIVER_XQGCZAM") + private Integer liverXqgczam; + /** + * 白蛋白 + */ + @TableField(value = "LIVER_BDB") + private Integer liverBdb; + /** + * 总胆红素 + */ + @TableField(value = "LIVER_ZDHS") + private Integer liverZdhs; + /** + * 综合胆红素 + */ + @TableField(value = "LIVER_ZHDHS") + private Integer liverZhdhs; + /** + * 丙肝 + */ + @TableField(value = "LIVER_BG") + private Integer liverBg; + /** + * 乙肝表面抗原 + */ + @TableField(value = "HEPATITISB_YGBMKY") + private Integer hepatitisbYgbmky; + /** + * 乙肝表面抗体 + */ + @TableField(value = "HEPATITISB_YGBMKT") + private Integer hepatitisbYgbmkt; + /** + * 乙肝E抗原 + */ + @TableField(value = "HEPATITISB_YGEKY") + private Integer hepatitisbYgeky; + /** + * 乙肝E抗体 + */ + @TableField(value = "HEPATITISB_YGEKT") + private Integer hepatitisbYgekt; + /** + * 乙肝核心抗体 + */ + @TableField(value = "HEPATITISB_YGHXKT") + private Integer hepatitisbYghxkt; + /** + * 血清肌酐 + */ + @TableField(value = "KIDNEY_XQJG") + private Integer kidneyXqjg; + /** + * 血尿素氮 + */ + @TableField(value = "KIDNEY_XNSD") + private Integer kidneyXnsd; + /** + * 梅毒血清实验-实验结果 + */ + @TableField(value = "SYPHILIS_SYJG") + private Integer syphilisSyjg; + /** + * HIV抗体检测 + */ + @TableField(value = "SYPHILIS_HIV") + private Integer syphilisHiv; + /** + * 阴道分泌物-滴虫 + */ + @TableField(value = "VAGINA_DC") + private Integer vaginaDc; + /** + * 假丝酵母菌 + */ + @TableField(value = "VAGINA_JSJMJ") + private Integer vaginaJsjmj; + /** + * 其他 + */ + @TableField(value = "VAGINA_OTHER") + private Integer vaginaOther; + /** + * 其他文本 + */ + @TableField(value = "VAGINA_OTHER_TXT") + private String vaginaOtherTxt; + /** + * 阴道清洁度 + */ + @TableField(value = "VAGINA_YDQJD") + private Integer vaginaYdqjd; + /** + * 淋病 + */ + @TableField(value = "GONORRHOEA") + private String gonorrhoea; + /** + * B超描述 + */ + @TableField(value = "IMAGE_BULTRASOUND") + private String imageBultrasound; + /** + * 胸透描述 + */ + @TableField(value = "IMAGE_XT") + private String imageXt; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getDiagnoseId() { + return diagnoseId; + } + + public void setDiagnoseId(String diagnoseId) { + this.diagnoseId = diagnoseId; + } + + public Integer getBloodroutineXhdb() { + return bloodroutineXhdb; + } + + public void setBloodroutineXhdb(Integer bloodroutineXhdb) { + this.bloodroutineXhdb = bloodroutineXhdb; + } + + public Integer getBloodroutineBxbjs() { + return bloodroutineBxbjs; + } + + public void setBloodroutineBxbjs(Integer bloodroutineBxbjs) { + this.bloodroutineBxbjs = bloodroutineBxbjs; + } + + public Integer getBloodroutineXxbjs() { + return bloodroutineXxbjs; + } + + public void setBloodroutineXxbjs(Integer bloodroutineXxbjs) { + this.bloodroutineXxbjs = bloodroutineXxbjs; + } + + public String getBloodroutineOther() { + return bloodroutineOther; + } + + public void setBloodroutineOther(String bloodroutineOther) { + this.bloodroutineOther = bloodroutineOther; + } + + public String getPissNdb() { + return pissNdb; + } + + public void setPissNdb(String pissNdb) { + this.pissNdb = pissNdb; + } + + public String getPissNt() { + return pissNt; + } + + public void setPissNt(String pissNt) { + this.pissNt = pissNt; + } + + public String getPissNtt() { + return pissNtt; + } + + public void setPissNtt(String pissNtt) { + this.pissNtt = pissNtt; + } + + public String getPissNqx() { + return pissNqx; + } + + public void setPissNqx(String pissNqx) { + this.pissNqx = pissNqx; + } + + public String getPissOther() { + return pissOther; + } + + public void setPissOther(String pissOther) { + this.pissOther = pissOther; + } + + public String getBloodtype() { + return bloodtype; + } + + public void setBloodtype(String bloodtype) { + this.bloodtype = bloodtype; + } + + public Integer getBloodtypeRh() { + return bloodtypeRh; + } + + public void setBloodtypeRh(Integer bloodtypeRh) { + this.bloodtypeRh = bloodtypeRh; + } + + public String getBloodtypeXt() { + return bloodtypeXt; + } + + public void setBloodtypeXt(String bloodtypeXt) { + this.bloodtypeXt = bloodtypeXt; + } + + public Integer getLiverXqgbzam() { + return liverXqgbzam; + } + + public void setLiverXqgbzam(Integer liverXqgbzam) { + this.liverXqgbzam = liverXqgbzam; + } + + public Integer getLiverXqgczam() { + return liverXqgczam; + } + + public void setLiverXqgczam(Integer liverXqgczam) { + this.liverXqgczam = liverXqgczam; + } + + public Integer getLiverBdb() { + return liverBdb; + } + + public void setLiverBdb(Integer liverBdb) { + this.liverBdb = liverBdb; + } + + public Integer getLiverZdhs() { + return liverZdhs; + } + + public void setLiverZdhs(Integer liverZdhs) { + this.liverZdhs = liverZdhs; + } + + public Integer getLiverZhdhs() { + return liverZhdhs; + } + + public void setLiverZhdhs(Integer liverZhdhs) { + this.liverZhdhs = liverZhdhs; + } + + public Integer getLiverBg() { + return liverBg; + } + + public void setLiverBg(Integer liverBg) { + this.liverBg = liverBg; + } + + public Integer getHepatitisbYgbmky() { + return hepatitisbYgbmky; + } + + public void setHepatitisbYgbmky(Integer hepatitisbYgbmky) { + this.hepatitisbYgbmky = hepatitisbYgbmky; + } + + public Integer getHepatitisbYgbmkt() { + return hepatitisbYgbmkt; + } + + public void setHepatitisbYgbmkt(Integer hepatitisbYgbmkt) { + this.hepatitisbYgbmkt = hepatitisbYgbmkt; + } + + public Integer getHepatitisbYgeky() { + return hepatitisbYgeky; + } + + public void setHepatitisbYgeky(Integer hepatitisbYgeky) { + this.hepatitisbYgeky = hepatitisbYgeky; + } + + public Integer getHepatitisbYgekt() { + return hepatitisbYgekt; + } + + public void setHepatitisbYgekt(Integer hepatitisbYgekt) { + this.hepatitisbYgekt = hepatitisbYgekt; + } + + public Integer getHepatitisbYghxkt() { + return hepatitisbYghxkt; + } + + public void setHepatitisbYghxkt(Integer hepatitisbYghxkt) { + this.hepatitisbYghxkt = hepatitisbYghxkt; + } + + public Integer getKidneyXqjg() { + return kidneyXqjg; + } + + public void setKidneyXqjg(Integer kidneyXqjg) { + this.kidneyXqjg = kidneyXqjg; + } + + public Integer getKidneyXnsd() { + return kidneyXnsd; + } + + public void setKidneyXnsd(Integer kidneyXnsd) { + this.kidneyXnsd = kidneyXnsd; + } + + public Integer getSyphilisSyjg() { + return syphilisSyjg; + } + + public void setSyphilisSyjg(Integer syphilisSyjg) { + this.syphilisSyjg = syphilisSyjg; + } + + public Integer getSyphilisHiv() { + return syphilisHiv; + } + + public void setSyphilisHiv(Integer syphilisHiv) { + this.syphilisHiv = syphilisHiv; + } + + public Integer getVaginaDc() { + return vaginaDc; + } + + public void setVaginaDc(Integer vaginaDc) { + this.vaginaDc = vaginaDc; + } + + public Integer getVaginaJsjmj() { + return vaginaJsjmj; + } + + public void setVaginaJsjmj(Integer vaginaJsjmj) { + this.vaginaJsjmj = vaginaJsjmj; + } + + public Integer getVaginaOther() { + return vaginaOther; + } + + public void setVaginaOther(Integer vaginaOther) { + this.vaginaOther = vaginaOther; + } + + public String getVaginaOtherTxt() { + return vaginaOtherTxt; + } + + public void setVaginaOtherTxt(String vaginaOtherTxt) { + this.vaginaOtherTxt = vaginaOtherTxt; + } + + public Integer getVaginaYdqjd() { + return vaginaYdqjd; + } + + public void setVaginaYdqjd(Integer vaginaYdqjd) { + this.vaginaYdqjd = vaginaYdqjd; + } + + public String getGonorrhoea() { + return gonorrhoea; + } + + public void setGonorrhoea(String gonorrhoea) { + this.gonorrhoea = gonorrhoea; + } + + public String getImageBultrasound() { + return imageBultrasound; + } + + public void setImageBultrasound(String imageBultrasound) { + this.imageBultrasound = imageBultrasound; + } + + public String getImageXt() { + return imageXt; + } + + public void setImageXt(String imageXt) { + this.imageXt = imageXt; + } + +} diff --git a/parent/hospital.mac/src/main/java/com/lyms/hospital/entity/diagnose/DiagnoseInfo.java b/parent/hospital.mac/src/main/java/com/lyms/hospital/entity/diagnose/DiagnoseInfo.java new file mode 100644 index 0000000..501568e --- /dev/null +++ b/parent/hospital.mac/src/main/java/com/lyms/hospital/entity/diagnose/DiagnoseInfo.java @@ -0,0 +1,518 @@ +package com.lyms.hospital.entity.diagnose; + +import java.io.Serializable; +import java.util.Date; + +import com.baomidou.mybatisplus.annotations.TableField; +import com.baomidou.mybatisplus.annotations.TableId; +import com.baomidou.mybatisplus.annotations.TableName; + +/** + *

+ * 诊断信息表,包含初诊、复诊信息 + *

+ * + * @author jiangjiazhi + * @since 2017-03-31 + */ +@TableName("DIAGNOSE_INFO") +public class DiagnoseInfo implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * + */ + @TableId(value = "ID") + private String id; + /** + * + */ + @TableField(value = "WOMAN_ID") + private String womanId; + /** + * 诊断类型,0为初诊,1为复诊 + */ + @TableField(value = "TYPE") + private Integer type; + /** + * 孕次 + */ + @TableField(value = "YUN_NUM") + private Integer yunNum; + /** + * 产次 + */ + @TableField(value = "CHAN_NUM") + private Integer chanNum; + /** + * 顺产 + */ + @TableField(value = "SHUN_NUM") + private Integer shunNum; + /** + * 刨宫产 + */ + @TableField(value = "PAO_NUM") + private Integer paoNum; + /** + * 流产 + */ + @TableField(value = "LIU_NUM") + private Integer liuNum; + /** + * 自然 + */ + @TableField(value = "ZIRAN_NUM") + private Integer ziranNum; + /** + * 人工 + */ + @TableField(value = "RENGONG_NUM") + private Integer rengongNum; + /** + * 死胎 + */ + @TableField(value = "SITAI_NUM") + private Integer sitaiNum; + /** + * 死产 + */ + @TableField(value = "SICHAN_NUM") + private Integer sichanNum; + /** + * 新生儿死亡 + */ + @TableField(value = "CHILDDIE_NUM") + private Integer childdieNum; + /** + * 出生缺陷儿 + */ + @TableField(value = "BIRTHDEFECT_NUM") + private Integer birthdefectNum; + /** + * 身高 + */ + @TableField(value = "HEIGHT") + private Integer height; + /** + * 体重 + */ + @TableField(value = "WEIGHT") + private Integer weight; + /** + * 孕前体重 + */ + @TableField(value = "HEIGHT_AGO") + private Integer heightAgo; + /** + * 体重指数 + */ + @TableField(value = "WEIGHT_INDEX") + private Double weightIndex; + /** + * 血压_收缩压 + */ + @TableField(value = "BLOOD_SHRINK") + private Integer bloodShrink; + /** + * 血压_舒张压 + */ + @TableField(value = "BLOOD_DIASTOLE") + private Integer bloodDiastole; + /** + * 心脏 + */ + @TableField(value = "HEART") + private String heart; + /** + * 肺部 + */ + @TableField(value = "LUNG") + private String lung; + /** + * 外阴 + */ + @TableField(value = "WAIYIN_WOMAN") + private String waiyinWoman; + /** + * 阴道 + */ + @TableField(value = "YINDAO_WOMAN") + private String yindaoWoman; + /** + * + */ + @TableField(value = "GONGJING_WOMAN") + private String gongjingWoman; + /** + * 子宫 + */ + @TableField(value = "ZIGONG_WOMAN") + private String zigongWoman; + /** + * 附件 + */ + @TableField(value = "FUJIAN_WOMAN") + private String fujianWoman; + /** + * 宫高 + */ + @TableField(value = "GONGGAO_OBSTETRICS") + private Integer gonggaoObstetrics; + /** + * 腹围 + */ + @TableField(value = "FUWEI_OBSTETRICS") + private Integer fuweiObstetrics; + /** + * 浮肿 + */ + @TableField(value = "FUZHONG_OBSTETRICS") + private Integer fuzhongObstetrics; + /** + * 胎数 + */ + @TableField(value = "TAISHU_OBSTETRICS") + private Integer taishuObstetrics; + /** + * 处理意见 + */ + @TableField(value = "DISPOSE_SUGGEST") + private String disposeSuggest; + /** + * 指导意见 + */ + @TableField(value = "GUIDE_SUGGEST") + private String guideSuggest; + /** + * 下次产检孕周数 + */ + @TableField(value = "NEXTINSPECT_NUM") + private Integer nextinspectNum; + /** + * 下次检查日期 + */ + @TableField(value = "NEXTINSPECT_TIME") + private Date nextinspectTime; + /** + * + */ + @TableField(value = "DOCTOR_ID") + private String doctorId; + /** + * 医院id + */ + @TableField(value = "ORG_ID") + private String orgId; + /** + * 诊断时间 + */ + @TableField(value = "DIAGNOSE_TIME") + private Date diagnoseTime; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getWomanId() { + return womanId; + } + + public void setWomanId(String womanId) { + this.womanId = womanId; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public Integer getYunNum() { + return yunNum; + } + + public void setYunNum(Integer yunNum) { + this.yunNum = yunNum; + } + + public Integer getChanNum() { + return chanNum; + } + + public void setChanNum(Integer chanNum) { + this.chanNum = chanNum; + } + + public Integer getShunNum() { + return shunNum; + } + + public void setShunNum(Integer shunNum) { + this.shunNum = shunNum; + } + + public Integer getPaoNum() { + return paoNum; + } + + public void setPaoNum(Integer paoNum) { + this.paoNum = paoNum; + } + + public Integer getLiuNum() { + return liuNum; + } + + public void setLiuNum(Integer liuNum) { + this.liuNum = liuNum; + } + + public Integer getZiranNum() { + return ziranNum; + } + + public void setZiranNum(Integer ziranNum) { + this.ziranNum = ziranNum; + } + + public Integer getRengongNum() { + return rengongNum; + } + + public void setRengongNum(Integer rengongNum) { + this.rengongNum = rengongNum; + } + + public Integer getSitaiNum() { + return sitaiNum; + } + + public void setSitaiNum(Integer sitaiNum) { + this.sitaiNum = sitaiNum; + } + + public Integer getSichanNum() { + return sichanNum; + } + + public void setSichanNum(Integer sichanNum) { + this.sichanNum = sichanNum; + } + + public Integer getChilddieNum() { + return childdieNum; + } + + public void setChilddieNum(Integer childdieNum) { + this.childdieNum = childdieNum; + } + + public Integer getBirthdefectNum() { + return birthdefectNum; + } + + public void setBirthdefectNum(Integer birthdefectNum) { + this.birthdefectNum = birthdefectNum; + } + + public Integer getHeight() { + return height; + } + + public void setHeight(Integer height) { + this.height = height; + } + + public Integer getWeight() { + return weight; + } + + public void setWeight(Integer weight) { + this.weight = weight; + } + + public Integer getHeightAgo() { + return heightAgo; + } + + public void setHeightAgo(Integer heightAgo) { + this.heightAgo = heightAgo; + } + + public Double getWeightIndex() { + return weightIndex; + } + + public void setWeightIndex(Double weightIndex) { + this.weightIndex = weightIndex; + } + + public Integer getBloodShrink() { + return bloodShrink; + } + + public void setBloodShrink(Integer bloodShrink) { + this.bloodShrink = bloodShrink; + } + + public Integer getBloodDiastole() { + return bloodDiastole; + } + + public void setBloodDiastole(Integer bloodDiastole) { + this.bloodDiastole = bloodDiastole; + } + + public String getHeart() { + return heart; + } + + public void setHeart(String heart) { + this.heart = heart; + } + + public String getLung() { + return lung; + } + + public void setLung(String lung) { + this.lung = lung; + } + + public String getWaiyinWoman() { + return waiyinWoman; + } + + public void setWaiyinWoman(String waiyinWoman) { + this.waiyinWoman = waiyinWoman; + } + + public String getYindaoWoman() { + return yindaoWoman; + } + + public void setYindaoWoman(String yindaoWoman) { + this.yindaoWoman = yindaoWoman; + } + + public String getGongjingWoman() { + return gongjingWoman; + } + + public void setGongjingWoman(String gongjingWoman) { + this.gongjingWoman = gongjingWoman; + } + + public String getZigongWoman() { + return zigongWoman; + } + + public void setZigongWoman(String zigongWoman) { + this.zigongWoman = zigongWoman; + } + + public String getFujianWoman() { + return fujianWoman; + } + + public void setFujianWoman(String fujianWoman) { + this.fujianWoman = fujianWoman; + } + + public Integer getGonggaoObstetrics() { + return gonggaoObstetrics; + } + + public void setGonggaoObstetrics(Integer gonggaoObstetrics) { + this.gonggaoObstetrics = gonggaoObstetrics; + } + + public Integer getFuweiObstetrics() { + return fuweiObstetrics; + } + + public void setFuweiObstetrics(Integer fuweiObstetrics) { + this.fuweiObstetrics = fuweiObstetrics; + } + + public Integer getFuzhongObstetrics() { + return fuzhongObstetrics; + } + + public void setFuzhongObstetrics(Integer fuzhongObstetrics) { + this.fuzhongObstetrics = fuzhongObstetrics; + } + + public Integer getTaishuObstetrics() { + return taishuObstetrics; + } + + public void setTaishuObstetrics(Integer taishuObstetrics) { + this.taishuObstetrics = taishuObstetrics; + } + + public String getDisposeSuggest() { + return disposeSuggest; + } + + public void setDisposeSuggest(String disposeSuggest) { + this.disposeSuggest = disposeSuggest; + } + + public String getGuideSuggest() { + return guideSuggest; + } + + public void setGuideSuggest(String guideSuggest) { + this.guideSuggest = guideSuggest; + } + + public Integer getNextinspectNum() { + return nextinspectNum; + } + + public void setNextinspectNum(Integer nextinspectNum) { + this.nextinspectNum = nextinspectNum; + } + + public Date getNextinspectTime() { + return nextinspectTime; + } + + public void setNextinspectTime(Date nextinspectTime) { + this.nextinspectTime = nextinspectTime; + } + + public String getDoctorId() { + return doctorId; + } + + public void setDoctorId(String doctorId) { + this.doctorId = doctorId; + } + + public String getOrgId() { + return orgId; + } + + public void setOrgId(String orgId) { + this.orgId = orgId; + } + + public Date getDiagnoseTime() { + return diagnoseTime; + } + + public void setDiagnoseTime(Date diagnoseTime) { + this.diagnoseTime = diagnoseTime; + } + +} -- 1.8.3.1