diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/BabyPatientExtendEarFollowUpMapper.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/BabyPatientExtendEarFollowUpMapper.java new file mode 100644 index 0000000..dc5699a --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/BabyPatientExtendEarFollowUpMapper.java @@ -0,0 +1,21 @@ +package com.lyms.platform.permission.dao.master; + +import com.lyms.platform.permission.model.BabyPatientExtendEarFollowUp; +import com.lyms.platform.permission.model.BabyPatientExtendEarFollowUpQuery; + +import java.util.List; + +public interface BabyPatientExtendEarFollowUpMapper { + public void addBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUp obj); + + public void updateBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUp obj); + + public void deleteBabyPatientExtendEarFollowUp(String id); + + public BabyPatientExtendEarFollowUp getBabyPatientExtendEarFollowUp(String id); + + public int queryBabyPatientExtendEarFollowUpCount(BabyPatientExtendEarFollowUpQuery query); + + public List queryBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUpQuery query); + +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/BabyPatientExtendEarHearingDiagnoseMapper.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/BabyPatientExtendEarHearingDiagnoseMapper.java new file mode 100644 index 0000000..ded0dc8 --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/BabyPatientExtendEarHearingDiagnoseMapper.java @@ -0,0 +1,21 @@ +package com.lyms.platform.permission.dao.master; + +import com.lyms.platform.permission.model.BabyPatientExtendEarHearingDiagnose; +import com.lyms.platform.permission.model.BabyPatientExtendEarHearingDiagnoseQuery; + +import java.util.List; + +public interface BabyPatientExtendEarHearingDiagnoseMapper { + public void addBabyPatientExtendEarHearingDiagnose(BabyPatientExtendEarHearingDiagnose obj); + + public void updateBabyPatientExtendEarHearingDiagnose(BabyPatientExtendEarHearingDiagnose obj); + + public void deleteBabyPatientExtendEarHearingDiagnose(String id); + + public BabyPatientExtendEarHearingDiagnose getBabyPatientExtendEarHearingDiagnose(String id); + + public int queryBabyPatientExtendEarHearingDiagnoseCount(BabyPatientExtendEarHearingDiagnoseQuery query); + + public List queryBabyPatientExtendEarHearingDiagnose(BabyPatientExtendEarHearingDiagnoseQuery query); + +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/FollowUpMapper.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/FollowUpMapper.java deleted file mode 100644 index a0b7f71..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/FollowUpMapper.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.lyms.platform.permission.dao.master; - -import com.lyms.platform.permission.model.FollowUp; -import com.lyms.platform.permission.model.FollowUpQuery; - -import java.util.List; - -public interface FollowUpMapper { - public void addFollowUp(FollowUp obj); - - public void updateFollowUp(FollowUp obj); - - public void deleteFollowUp(String id); - - public FollowUp getFollowUp(String id); - - public int queryFollowUpCount(FollowUpQuery query); - - public List queryFollowUp(FollowUpQuery query); - -} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/HearingDiagnoseMapper.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/HearingDiagnoseMapper.java deleted file mode 100644 index 61ba325..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/dao/master/HearingDiagnoseMapper.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.lyms.platform.permission.dao.master; - -import com.lyms.platform.permission.model.HearingDiagnose; -import com.lyms.platform.permission.model.HearingDiagnoseQuery; - -import java.util.List; - -public interface HearingDiagnoseMapper { - public void addHearingDiagnose(HearingDiagnose obj); - - public void updateHearingDiagnose(HearingDiagnose obj); - - public void deleteHearingDiagnose(String id); - - public HearingDiagnose getHearingDiagnose(String id); - - public int queryHearingDiagnoseCount(HearingDiagnoseQuery query); - - public List queryHearingDiagnose(HearingDiagnoseQuery query); - -} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarFollowUp.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarFollowUp.java new file mode 100644 index 0000000..f7af78f --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarFollowUp.java @@ -0,0 +1,325 @@ +package com.lyms.platform.permission.model; + +import java.util.Date; + +public class BabyPatientExtendEarFollowUp { + /** + * 主键 + */ + private String id; + /** + * 儿童档案ID + */ + private String babyId; + /** + * 随访时间 + */ + private Date followTime; + /** + * 随访地点 + */ + private String followAddr; + /** + * 确诊时间 + */ + private Date markTime; + /** + * 确诊结果 + */ + private String markResult; + /** + * 确诊详情 + */ + private String markDetail; + /** + * 随访记录 + */ + private String followInfo; + /** + * 助听器(0-左耳,2-右耳,3-全部) + */ + private Integer audiphone; + /** + * 手术(0-左耳,2-右耳,3-全部) + */ + private Integer operation; + /** + * 人工耳蜗(0-左耳,2-右耳,3-全部) + */ + private Integer artifiCochlea; + /** + * 指导意见 + */ + private String guideOpinion; + /** + * 随访医生名称 + */ + private String followDoctorName; + /** + * 随访医生id + */ + private String followDoctorId; + /** + * 预约复查时间 + */ + private Date nextTime; + /** + * 是否删除 + */ + private Integer ifdel; + /** + * 是否结案 0-未结案,1-结案 + */ + private Integer ifclose; + /** + * 医院ID + */ + private String hospitalId; + /** + * 修改时间 + */ + private Date modifyTime; + /** + * 修改人id + */ + private String modifyId; + /** + * 创建时间 + */ + private Date createTime; + /** + * 创建人id + */ + private String createId; + /** + * 状态 + */ + private Integer enalble; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + + } + + public String getBabyId() { + return babyId; + } + + public void setBabyId(String babyId) { + this.babyId = babyId; + } + + public Date getFollowTime() { + return followTime; + } + + + public void setFollowTime(Date followTime) { + this.followTime = followTime; + + } + + public String getFollowAddr() { + return followAddr; + } + + + public void setFollowAddr(String followAddr) { + this.followAddr = followAddr; + + } + + public Date getMarkTime() { + return markTime; + } + + + public void setMarkTime(Date markTime) { + this.markTime = markTime; + + } + + public String getMarkResult() { + return markResult; + } + + + public void setMarkResult(String markResult) { + this.markResult = markResult; + + } + + public String getMarkDetail() { + return markDetail; + } + + + public void setMarkDetail(String markDetail) { + this.markDetail = markDetail; + + } + + public String getFollowInfo() { + return followInfo; + } + + + public void setFollowInfo(String followInfo) { + this.followInfo = followInfo; + + } + + public Integer getAudiphone() { + return audiphone; + } + + + public void setAudiphone(Integer audiphone) { + this.audiphone = audiphone; + + } + + public Integer getOperation() { + return operation; + } + + + public void setOperation(Integer operation) { + this.operation = operation; + + } + + public Integer getArtifiCochlea() { + return artifiCochlea; + } + + + public void setArtifiCochlea(Integer artifiCochlea) { + this.artifiCochlea = artifiCochlea; + + } + + public String getGuideOpinion() { + return guideOpinion; + } + + + public void setGuideOpinion(String guideOpinion) { + this.guideOpinion = guideOpinion; + + } + + public String getFollowDoctorName() { + return followDoctorName; + } + + + public void setFollowDoctorName(String followDoctorName) { + this.followDoctorName = followDoctorName; + + } + + public String getFollowDoctorId() { + return followDoctorId; + } + + + public void setFollowDoctorId(String followDoctorId) { + this.followDoctorId = followDoctorId; + + } + + public Date getNextTime() { + return nextTime; + } + + + public void setNextTime(Date nextTime) { + this.nextTime = nextTime; + + } + + public Integer getIfdel() { + return ifdel; + } + + + public void setIfdel(Integer ifdel) { + this.ifdel = ifdel; + + } + + public Integer getIfclose() { + return ifclose; + } + + + public void setIfclose(Integer ifclose) { + this.ifclose = ifclose; + + } + + public String getHospitalId() { + return hospitalId; + } + + + public void setHospitalId(String hospitalId) { + this.hospitalId = hospitalId; + + } + + public Date getModifyTime() { + return modifyTime; + } + + + public void setModifyTime(Date modifyTime) { + this.modifyTime = modifyTime; + + } + + public String getModifyId() { + return modifyId; + } + + + public void setModifyId(String modifyId) { + this.modifyId = modifyId; + + } + + public Date getCreateTime() { + return createTime; + } + + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + + } + + public String getCreateId() { + return createId; + } + + + public void setCreateId(String createId) { + this.createId = createId; + + } + + public Integer getEnalble() { + return enalble; + } + + + public void setEnalble(Integer enalble) { + this.enalble = enalble; + + } +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarFollowUpQuery.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarFollowUpQuery.java new file mode 100644 index 0000000..8d6a60d --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarFollowUpQuery.java @@ -0,0 +1,330 @@ +package com.lyms.platform.permission.model; + + +import com.lyms.platform.common.dao.BaseQuery; + +import java.util.Date; + + +public class BabyPatientExtendEarFollowUpQuery extends BaseQuery { + /** + * 主键 + */ + private String id; + /** + * 儿童档案ID + */ + private String babyId; + /** + * 随访时间 + */ + private Date followTime; + /** + * 随访地点 + */ + private String followAddr; + /** + * 确诊时间 + */ + private Date markTime; + /** + * 确诊结果 + */ + private String markResult; + /** + * 确诊详情 + */ + private String markDetail; + /** + * 随访记录 + */ + private String followInfo; + /** + * 助听器(0-左耳,2-右耳,3-全部) + */ + private Integer audiphone; + /** + * 手术(0-左耳,2-右耳,3-全部) + */ + private Integer operation; + /** + * 人工耳蜗(0-左耳,2-右耳,3-全部) + */ + private Integer artifiCochlea; + /** + * 指导意见 + */ + private String guideOpinion; + /** + * 随访医生名称 + */ + private String followDoctorName; + /** + * 随访医生id + */ + private String followDoctorId; + /** + * 预约复查时间 + */ + private Date nextTime; + /** + * 是否删除 + */ + private Integer ifdel; + /** + * 是否结案 + */ + private Integer ifclose; + /** + * 医院ID + */ + private String hospitalId; + /** + * 修改时间 + */ + private Date modifyTime; + /** + * 修改人id + */ + private String modifyId; + /** + * 创建时间 + */ + private Date createTime; + /** + * 创建人id + */ + private String createId; + /** + * 状态 + */ + private Integer enalble; + + public String getId() { + return id; + } + + + public void setId(String id) { + this.id = id; + + } + + public String getBabyId() { + return babyId; + } + + public void setBabyId(String babyId) { + this.babyId = babyId; + } + + public Date getFollowTime() { + return followTime; + } + + + public void setFollowTime(Date followTime) { + this.followTime = followTime; + + } + + public String getFollowAddr() { + return followAddr; + } + + + public void setFollowAddr(String followAddr) { + this.followAddr = followAddr; + + } + + public Date getMarkTime() { + return markTime; + } + + + public void setMarkTime(Date markTime) { + this.markTime = markTime; + + } + + public String getMarkResult() { + return markResult; + } + + + public void setMarkResult(String markResult) { + this.markResult = markResult; + + } + + public String getMarkDetail() { + return markDetail; + } + + + public void setMarkDetail(String markDetail) { + this.markDetail = markDetail; + + } + + public String getFollowInfo() { + return followInfo; + } + + + public void setFollowInfo(String followInfo) { + this.followInfo = followInfo; + + } + + public Integer getAudiphone() { + return audiphone; + } + + + public void setAudiphone(Integer audiphone) { + this.audiphone = audiphone; + + } + + public Integer getOperation() { + return operation; + } + + + public void setOperation(Integer operation) { + this.operation = operation; + + } + + public Integer getArtifiCochlea() { + return artifiCochlea; + } + + + public void setArtifiCochlea(Integer artifiCochlea) { + this.artifiCochlea = artifiCochlea; + + } + + public String getGuideOpinion() { + return guideOpinion; + } + + + public void setGuideOpinion(String guideOpinion) { + this.guideOpinion = guideOpinion; + + } + + public String getFollowDoctorName() { + return followDoctorName; + } + + + public void setFollowDoctorName(String followDoctorName) { + this.followDoctorName = followDoctorName; + + } + + public String getFollowDoctorId() { + return followDoctorId; + } + + + public void setFollowDoctorId(String followDoctorId) { + this.followDoctorId = followDoctorId; + + } + + public Date getNextTime() { + return nextTime; + } + + + public void setNextTime(Date nextTime) { + this.nextTime = nextTime; + + } + + public Integer getIfdel() { + return ifdel; + } + + + public void setIfdel(Integer ifdel) { + this.ifdel = ifdel; + + } + + public Integer getIfclose() { + return ifclose; + } + + + public void setIfclose(Integer ifclose) { + this.ifclose = ifclose; + + } + + public String getHospitalId() { + return hospitalId; + } + + + public void setHospitalId(String hospitalId) { + this.hospitalId = hospitalId; + + } + + public Date getModifyTime() { + return modifyTime; + } + + + public void setModifyTime(Date modifyTime) { + this.modifyTime = modifyTime; + + } + + public String getModifyId() { + return modifyId; + } + + + public void setModifyId(String modifyId) { + this.modifyId = modifyId; + + } + + public Date getCreateTime() { + return createTime; + } + + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + + } + + public String getCreateId() { + return createId; + } + + + public void setCreateId(String createId) { + this.createId = createId; + + } + + public Integer getEnalble() { + return enalble; + } + + + public void setEnalble(Integer enalble) { + this.enalble = enalble; + + } +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarHearingDiagnose.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarHearingDiagnose.java new file mode 100644 index 0000000..a53fbff --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarHearingDiagnose.java @@ -0,0 +1,1364 @@ +package com.lyms.platform.permission.model; + +import com.lyms.platform.pojo.BabyModel; + +import java.util.Date; + +public class BabyPatientExtendEarHearingDiagnose { + + /** + * 涓婚敭 + */ + private String id; + /** + * 鍎跨妗fID + */ + private String babyId; + /** + * 妫娴嬪尰闄D + */ + private String hospitalId; + /** + * 璇婃柇鏃堕棿 + */ + private Date diagnoseTime; + /** + * 楂樺嵄鍥犵礌 + */ + private String highFactor; + /** + * ABR娼滀紡鏈熷乏鑰砫BnHL + */ + private String abrLeftDbnhl; + /** + * ABR娼滀紡鏈熷乏鑰矷娉 + */ + private String abrLeftLWave; + /** + * ABR娼滀紡鏈熷乏鑰矷II娉 + */ + private String abrLeftLllWave; + /** + * ABR娼滀紡鏈熷乏鑰砎娉 + */ + private String abrLeftVWave; + /** + * ABR娼滀紡鏈熷乏鑰冲绛栨帺钄藉己搴 + */ + private String abrLeftShield; + /** + * ABR娼滀紡鏈熷彸鑰砫BnHL + */ + private String abrRightDbnhl; + /** + * ABR娼滀紡鏈熷彸鑰矷娉 + */ + private String abrRightLWave; + /** + * ABR娼滀紡鏈熷彸鑰矷II娉 + */ + private String abrRightLllWave; + /** + * ABR娼滀紡鏈熷彸鑰砎娉 + */ + private String abrRightVWave; + /** + * ABR娼滀紡鏈熷彸鑰冲绛栨帺钄藉己搴 + */ + private String abrRightShield; + /** + * ABR闃堝煎乏鑰矰bnHL + */ + private String abrThrLeftDbnhl; + /** + * ABR闃堝煎乏鑰矼S + */ + private String abrThrLeftMs; + /** + * ABR闃堝煎乏鑰冲渚ф帺钄藉己搴BnHl + */ + private String abrThrLeftShieldDbnhl; + /** + * ABR闃堝煎彸鑰矰bnHL + */ + private String abrThrRightDbnhl; + /** + * ABR闃堝煎彸鑰矼S + */ + private String abrThrRightMs; + /** + * ABR闃堝煎彸鑰冲渚ф帺钄藉己搴BnHl + */ + private String abrThrRightShieldDbnhl; + /** + * ABR楠ㄥ闃鍊煎乏鑰砫BnHL + */ + private String abrBcLeftThrDbnhl; + /** + * ABR楠ㄥ闃鍊煎乏鑰砿s + */ + private String abrBcLeftThrMs; + /** + * ABR楠ㄥ闃鍊煎乏鑰冲渚ф帺钄藉己搴BnHL + */ + private String abrBcLeftThrShieldDbnhl; + /** + * ABR楠ㄥ闃鍊煎彸鑰砫BnHL + */ + private String abrBcRightThrDbnhl; + /** + * ABR楠ㄥ闃鍊煎彸鑰砿s + */ + private String abrBcRightThrMs; + /** + * ABR楠ㄥ闃鍊煎彸鑰冲渚ф帺钄藉己搴BnHL + */ + private String abrBcRightThrShieldDbnhl; + /** + * 鍙嶅簲闃鍊煎乏鑰砫BnHL + */ + private String reactionThrLeftDbnhl; + /** + * 鍙嶅簲闃鍊煎乏鑰冲渚у睆钄藉己搴BnHL + */ + private String reactionThrLeftShieldDbnhl; + /** + * 鍙嶅簲闃鍊煎彸鑰砫BnHL + */ + private String reactionThrRightDbnhl; + /** + * 鍙嶅簲闃鍊煎彸鑰冲渚ф帺钄藉己搴BnHL + */ + private String reactionThrRightShieldDbnhl; + /** + * 鑰冲0鍙戝皠宸﹁750Hz + */ + private String oaeLeft750; + /** + * 鑰冲0鍙戝皠宸﹁1KHz + */ + private String oaeLeft1k; + /** + * 鑰冲0鍙戝皠宸﹁2KHz + */ + private String oaeLeft2k; + /** + * 鑰冲0鍙戝皠宸﹁3KHz + */ + private String oaeLeft3k; + /** + * 鑰冲0鍙戝皠宸﹁4KHz + */ + private String oaeLeft4k; + /** + * 鑰冲0鍙戝皠宸﹁6KHz + */ + private String oaeLeft6k; + /** + * 鑰冲0鍙戝皠宸﹁8KHz + */ + private String oaeLeft8k; + /** + * 鑰冲0鍙戝皠宸﹁10KHz + */ + private String oaeLeft10k; + /** + * 鑰冲0鍙戝皠鍙宠750Hz + */ + private String oaeRight750; + /** + * 鑰冲0鍙戝皠鍙宠1KHz + */ + private String oaeRight1k; + /** + * 鑰冲0鍙戝皠鍙宠2KHz + */ + private String oaeRight2k; + /** + * 鑰冲0鍙戝皠鍙宠3KHz + */ + private String oaeRight3k; + /** + * 鑰冲0鍙戝皠鍙宠4KHz + */ + private String oaeRight4k; + /** + * 鑰冲0鍙戝皠鍙宠6KHz + */ + private String oaeRight6k; + /** + * 鑰冲0鍙戝皠鍙宠8KHz + */ + private String oaeRight8k; + /** + * 鑰冲0鍙戝皠鍙宠10KHz + */ + private String oaeRight10k; + /** + * 澹板绾冲乏鑰虫洸绾跨被鍨 + */ + private String acadLeftCurveType; + /** + * 澹板绾冲乏鑰抽紦瀹ゅ帇 + */ + private String acadLeftDrumCp; + /** + * 澹板绾冲乏鑰冲0椤 + */ + private String acadLeftAcco; + /** + * 澹板绾冲乏鑰冲鑰抽亾瀹圭Н + */ + private String acadLeftSecondoVolume; + /** + * 澹板绾冲乏鑰冲潯搴 + */ + private String acadLeftGradient; + /** + * 澹板绾冲乏鑰1K澹板弽灏勯榾鍊 + */ + private String acadLeft1kReflectThre; + /** + * 澹板绾冲彸鑰虫洸绾跨被鍨 + */ + private String acadRightCurveType; + /** + * 澹板绾冲彸鑰抽紦瀹ゅ帇 + */ + private String acadRightDrumCp; + /** + * 澹板绾冲彸鑰冲0椤 + */ + private String acadRightAcco; + /** + * 澹板绾冲彸鑰冲鑰抽亾瀹圭Н + */ + private String acadRightSecondoVolume; + /** + * 澹板绾冲彸鑰冲潯搴 + */ + private String acadRightGradient; + /** + * 澹板绾冲彸鑰1K澹板弽灏勯榾鍊 + */ + private String acadRight1kReflectThre; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲悓渚500Hz + */ + private String soundReflLeftIpsi500; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲悓渚1KHz + */ + private String soundReflLeftIpsi1k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲悓渚2KHz + */ + private String soundReflLeftIpsi2k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲悓渚4KHz + */ + private String soundReflLeftIpsi4k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲渚500Hz + */ + private String soundReflLeftOffsi500; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲渚1KHz + */ + private String soundReflLeftOffsi1k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲渚2KHz + */ + private String soundReflLeftOffsi2k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲渚4KHz + */ + private String soundReflLeftOffsi4k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲0鍙嶅皠琛板噺 + */ + private String soundReflLeftAtten; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲悓渚500Hz + */ + private String soundReflRightIpsi500; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲悓渚1KHz + */ + private String soundReflRightIpsi1k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲悓渚2KHz + */ + private String soundReflRightIpsi2k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲悓渚4KHz + */ + private String soundReflRightIpsi4k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲渚500Hz + */ + private String soundReflRightOffsi500; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲渚1KHz + */ + private String soundReflRightOffsi1k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲渚2KHz + */ + private String soundReflRightOffsi2k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲渚4KHz + */ + private String soundReflRightOffsi4k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲0鍙嶅皠琛板噺 + */ + private String soundReflRightAtten; + /** + * AABR宸﹁虫槸鍚﹂氳繃 + */ + private Integer aabrLeftIfPass; + /** + * AABR鍙宠虫槸鍚﹂氳繃 + */ + private Integer aabrRightIfPass; + /** + * ASSR宸﹁500Hz + */ + private String assrLeft500; + /** + * ASSR宸﹁1KHz + */ + private String assrLeft1k; + /** + * ASSR宸﹁2KHz + */ + private String assrLeft2k; + /** + * ASSR宸﹁4KHz + */ + private String assrLeft4k; + /** + * ASSR鍙宠500Hz + */ + private String assrRight500; + /** + * ASSR鍙宠1KHz + */ + private String assrRight1k; + /** + * ASSR鍙宠2KHz + */ + private String assrRight2k; + /** + * ASSR鍙宠4KHz + */ + private String assrRight4k; + /** + * 璇婃柇鎸囧澶勭悊鎰忚 + */ + private String diagnHandSugge; + /** + * 璇婃柇鎸囧鎸囧鎰忚 + */ + private String diagnGuideSugge; + /** + * 璇婃柇鎸囧璇婃柇鍖荤敓 + */ + private String diagnDoctorId; + /** + * 璇婃柇鎸囧棰勭害涓嬫璇婃柇鏃堕棿 + */ + private Date diagnNextTime; + /** + * 鍒涘缓鏃堕棿 + */ + private Date createTime; + /** + * 鍒涘缓ID + */ + private String createId; + /** + * 淇敼浜篿d + */ + private String modifyId; + /** + * 淇敼鏃堕棿 + */ + private Date modifyTime; + /** + * 鏄惁鍒犻櫎 + */ + private Integer ifdel; + /** + * 鐘舵 + */ + private Integer enalble; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + + } + + public String getBabyId() { + return babyId; + } + + public void setBabyId(String babyId) { + this.babyId = babyId; + } + + public String getHospitalId() { + return hospitalId; + } + + + public void setHospitalId(String hospitalId) { + this.hospitalId = hospitalId; + + } + + public Date getDiagnoseTime() { + return diagnoseTime; + } + + + public void setDiagnoseTime(Date diagnoseTime) { + this.diagnoseTime = diagnoseTime; + + } + + public String getHighFactor() { + return highFactor; + } + + + public void setHighFactor(String highFactor) { + this.highFactor = highFactor; + + } + + public String getAbrLeftDbnhl() { + return abrLeftDbnhl; + } + + + public void setAbrLeftDbnhl(String abrLeftDbnhl) { + this.abrLeftDbnhl = abrLeftDbnhl; + + } + + public String getAbrLeftLWave() { + return abrLeftLWave; + } + + + public void setAbrLeftLWave(String abrLeftLWave) { + this.abrLeftLWave = abrLeftLWave; + + } + + public String getAbrLeftLllWave() { + return abrLeftLllWave; + } + + + public void setAbrLeftLllWave(String abrLeftLllWave) { + this.abrLeftLllWave = abrLeftLllWave; + + } + + public String getAbrLeftVWave() { + return abrLeftVWave; + } + + + public void setAbrLeftVWave(String abrLeftVWave) { + this.abrLeftVWave = abrLeftVWave; + + } + + public String getAbrLeftShield() { + return abrLeftShield; + } + + + public void setAbrLeftShield(String abrLeftShield) { + this.abrLeftShield = abrLeftShield; + + } + + public String getAbrRightDbnhl() { + return abrRightDbnhl; + } + + + public void setAbrRightDbnhl(String abrRightDbnhl) { + this.abrRightDbnhl = abrRightDbnhl; + + } + + public String getAbrRightLWave() { + return abrRightLWave; + } + + + public void setAbrRightLWave(String abrRightLWave) { + this.abrRightLWave = abrRightLWave; + + } + + public String getAbrRightLllWave() { + return abrRightLllWave; + } + + + public void setAbrRightLllWave(String abrRightLllWave) { + this.abrRightLllWave = abrRightLllWave; + + } + + public String getAbrRightVWave() { + return abrRightVWave; + } + + + public void setAbrRightVWave(String abrRightVWave) { + this.abrRightVWave = abrRightVWave; + + } + + public String getAbrRightShield() { + return abrRightShield; + } + + + public void setAbrRightShield(String abrRightShield) { + this.abrRightShield = abrRightShield; + + } + + public String getAbrThrLeftDbnhl() { + return abrThrLeftDbnhl; + } + + + public void setAbrThrLeftDbnhl(String abrThrLeftDbnhl) { + this.abrThrLeftDbnhl = abrThrLeftDbnhl; + + } + + public String getAbrThrLeftMs() { + return abrThrLeftMs; + } + + + public void setAbrThrLeftMs(String abrThrLeftMs) { + this.abrThrLeftMs = abrThrLeftMs; + + } + + public String getAbrThrLeftShieldDbnhl() { + return abrThrLeftShieldDbnhl; + } + + + public void setAbrThrLeftShieldDbnhl(String abrThrLeftShieldDbnhl) { + this.abrThrLeftShieldDbnhl = abrThrLeftShieldDbnhl; + + } + + public String getAbrThrRightDbnhl() { + return abrThrRightDbnhl; + } + + + public void setAbrThrRightDbnhl(String abrThrRightDbnhl) { + this.abrThrRightDbnhl = abrThrRightDbnhl; + + } + + public String getAbrThrRightMs() { + return abrThrRightMs; + } + + + public void setAbrThrRightMs(String abrThrRightMs) { + this.abrThrRightMs = abrThrRightMs; + + } + + public String getAbrThrRightShieldDbnhl() { + return abrThrRightShieldDbnhl; + } + + + public void setAbrThrRightShieldDbnhl(String abrThrRightShieldDbnhl) { + this.abrThrRightShieldDbnhl = abrThrRightShieldDbnhl; + + } + + public String getAbrBcLeftThrDbnhl() { + return abrBcLeftThrDbnhl; + } + + + public void setAbrBcLeftThrDbnhl(String abrBcLeftThrDbnhl) { + this.abrBcLeftThrDbnhl = abrBcLeftThrDbnhl; + + } + + public String getAbrBcLeftThrMs() { + return abrBcLeftThrMs; + } + + + public void setAbrBcLeftThrMs(String abrBcLeftThrMs) { + this.abrBcLeftThrMs = abrBcLeftThrMs; + + } + + public String getAbrBcLeftThrShieldDbnhl() { + return abrBcLeftThrShieldDbnhl; + } + + + public void setAbrBcLeftThrShieldDbnhl(String abrBcLeftThrShieldDbnhl) { + this.abrBcLeftThrShieldDbnhl = abrBcLeftThrShieldDbnhl; + + } + + public String getAbrBcRightThrDbnhl() { + return abrBcRightThrDbnhl; + } + + + public void setAbrBcRightThrDbnhl(String abrBcRightThrDbnhl) { + this.abrBcRightThrDbnhl = abrBcRightThrDbnhl; + + } + + public String getAbrBcRightThrMs() { + return abrBcRightThrMs; + } + + + public void setAbrBcRightThrMs(String abrBcRightThrMs) { + this.abrBcRightThrMs = abrBcRightThrMs; + + } + + public String getAbrBcRightThrShieldDbnhl() { + return abrBcRightThrShieldDbnhl; + } + + + public void setAbrBcRightThrShieldDbnhl(String abrBcRightThrShieldDbnhl) { + this.abrBcRightThrShieldDbnhl = abrBcRightThrShieldDbnhl; + + } + + public String getReactionThrLeftDbnhl() { + return reactionThrLeftDbnhl; + } + + + public void setReactionThrLeftDbnhl(String reactionThrLeftDbnhl) { + this.reactionThrLeftDbnhl = reactionThrLeftDbnhl; + + } + + public String getReactionThrLeftShieldDbnhl() { + return reactionThrLeftShieldDbnhl; + } + + + public void setReactionThrLeftShieldDbnhl(String reactionThrLeftShieldDbnhl) { + this.reactionThrLeftShieldDbnhl = reactionThrLeftShieldDbnhl; + + } + + public String getReactionThrRightDbnhl() { + return reactionThrRightDbnhl; + } + + + public void setReactionThrRightDbnhl(String reactionThrRightDbnhl) { + this.reactionThrRightDbnhl = reactionThrRightDbnhl; + + } + + public String getReactionThrRightShieldDbnhl() { + return reactionThrRightShieldDbnhl; + } + + + public void setReactionThrRightShieldDbnhl(String reactionThrRightShieldDbnhl) { + this.reactionThrRightShieldDbnhl = reactionThrRightShieldDbnhl; + + } + + public String getOaeLeft750() { + return oaeLeft750; + } + + + public void setOaeLeft750(String oaeLeft750) { + this.oaeLeft750 = oaeLeft750; + + } + + public String getOaeLeft1k() { + return oaeLeft1k; + } + + + public void setOaeLeft1k(String oaeLeft1k) { + this.oaeLeft1k = oaeLeft1k; + + } + + public String getOaeLeft2k() { + return oaeLeft2k; + } + + + public void setOaeLeft2k(String oaeLeft2k) { + this.oaeLeft2k = oaeLeft2k; + + } + + public String getOaeLeft3k() { + return oaeLeft3k; + } + + + public void setOaeLeft3k(String oaeLeft3k) { + this.oaeLeft3k = oaeLeft3k; + + } + + public String getOaeLeft4k() { + return oaeLeft4k; + } + + + public void setOaeLeft4k(String oaeLeft4k) { + this.oaeLeft4k = oaeLeft4k; + + } + + public String getOaeLeft6k() { + return oaeLeft6k; + } + + + public void setOaeLeft6k(String oaeLeft6k) { + this.oaeLeft6k = oaeLeft6k; + + } + + public String getOaeLeft8k() { + return oaeLeft8k; + } + + + public void setOaeLeft8k(String oaeLeft8k) { + this.oaeLeft8k = oaeLeft8k; + + } + + public String getOaeLeft10k() { + return oaeLeft10k; + } + + + public void setOaeLeft10k(String oaeLeft10k) { + this.oaeLeft10k = oaeLeft10k; + + } + + public String getOaeRight750() { + return oaeRight750; + } + + + public void setOaeRight750(String oaeRight750) { + this.oaeRight750 = oaeRight750; + + } + + public String getOaeRight1k() { + return oaeRight1k; + } + + + public void setOaeRight1k(String oaeRight1k) { + this.oaeRight1k = oaeRight1k; + + } + + public String getOaeRight2k() { + return oaeRight2k; + } + + + public void setOaeRight2k(String oaeRight2k) { + this.oaeRight2k = oaeRight2k; + + } + + public String getOaeRight3k() { + return oaeRight3k; + } + + + public void setOaeRight3k(String oaeRight3k) { + this.oaeRight3k = oaeRight3k; + + } + + public String getOaeRight4k() { + return oaeRight4k; + } + + + public void setOaeRight4k(String oaeRight4k) { + this.oaeRight4k = oaeRight4k; + + } + + public String getOaeRight6k() { + return oaeRight6k; + } + + + public void setOaeRight6k(String oaeRight6k) { + this.oaeRight6k = oaeRight6k; + + } + + public String getOaeRight8k() { + return oaeRight8k; + } + + + public void setOaeRight8k(String oaeRight8k) { + this.oaeRight8k = oaeRight8k; + + } + + public String getOaeRight10k() { + return oaeRight10k; + } + + + public void setOaeRight10k(String oaeRight10k) { + this.oaeRight10k = oaeRight10k; + + } + + public String getAcadLeftCurveType() { + return acadLeftCurveType; + } + + + public void setAcadLeftCurveType(String acadLeftCurveType) { + this.acadLeftCurveType = acadLeftCurveType; + + } + + public String getAcadLeftDrumCp() { + return acadLeftDrumCp; + } + + + public void setAcadLeftDrumCp(String acadLeftDrumCp) { + this.acadLeftDrumCp = acadLeftDrumCp; + + } + + public String getAcadLeftAcco() { + return acadLeftAcco; + } + + + public void setAcadLeftAcco(String acadLeftAcco) { + this.acadLeftAcco = acadLeftAcco; + + } + + public String getAcadLeftSecondoVolume() { + return acadLeftSecondoVolume; + } + + + public void setAcadLeftSecondoVolume(String acadLeftSecondoVolume) { + this.acadLeftSecondoVolume = acadLeftSecondoVolume; + + } + + public String getAcadLeftGradient() { + return acadLeftGradient; + } + + + public void setAcadLeftGradient(String acadLeftGradient) { + this.acadLeftGradient = acadLeftGradient; + + } + + public String getAcadLeft1kReflectThre() { + return acadLeft1kReflectThre; + } + + + public void setAcadLeft1kReflectThre(String acadLeft1kReflectThre) { + this.acadLeft1kReflectThre = acadLeft1kReflectThre; + + } + + public String getAcadRightCurveType() { + return acadRightCurveType; + } + + + public void setAcadRightCurveType(String acadRightCurveType) { + this.acadRightCurveType = acadRightCurveType; + + } + + public String getAcadRightDrumCp() { + return acadRightDrumCp; + } + + + public void setAcadRightDrumCp(String acadRightDrumCp) { + this.acadRightDrumCp = acadRightDrumCp; + + } + + public String getAcadRightAcco() { + return acadRightAcco; + } + + + public void setAcadRightAcco(String acadRightAcco) { + this.acadRightAcco = acadRightAcco; + + } + + public String getAcadRightSecondoVolume() { + return acadRightSecondoVolume; + } + + + public void setAcadRightSecondoVolume(String acadRightSecondoVolume) { + this.acadRightSecondoVolume = acadRightSecondoVolume; + + } + + public String getAcadRightGradient() { + return acadRightGradient; + } + + + public void setAcadRightGradient(String acadRightGradient) { + this.acadRightGradient = acadRightGradient; + + } + + public String getAcadRight1kReflectThre() { + return acadRight1kReflectThre; + } + + + public void setAcadRight1kReflectThre(String acadRight1kReflectThre) { + this.acadRight1kReflectThre = acadRight1kReflectThre; + + } + + public String getSoundReflLeftIpsi500() { + return soundReflLeftIpsi500; + } + + + public void setSoundReflLeftIpsi500(String soundReflLeftIpsi500) { + this.soundReflLeftIpsi500 = soundReflLeftIpsi500; + + } + + public String getSoundReflLeftIpsi1k() { + return soundReflLeftIpsi1k; + } + + + public void setSoundReflLeftIpsi1k(String soundReflLeftIpsi1k) { + this.soundReflLeftIpsi1k = soundReflLeftIpsi1k; + + } + + public String getSoundReflLeftIpsi2k() { + return soundReflLeftIpsi2k; + } + + + public void setSoundReflLeftIpsi2k(String soundReflLeftIpsi2k) { + this.soundReflLeftIpsi2k = soundReflLeftIpsi2k; + + } + + public String getSoundReflLeftIpsi4k() { + return soundReflLeftIpsi4k; + } + + + public void setSoundReflLeftIpsi4k(String soundReflLeftIpsi4k) { + this.soundReflLeftIpsi4k = soundReflLeftIpsi4k; + + } + + public String getSoundReflLeftOffsi500() { + return soundReflLeftOffsi500; + } + + + public void setSoundReflLeftOffsi500(String soundReflLeftOffsi500) { + this.soundReflLeftOffsi500 = soundReflLeftOffsi500; + + } + + public String getSoundReflLeftOffsi1k() { + return soundReflLeftOffsi1k; + } + + + public void setSoundReflLeftOffsi1k(String soundReflLeftOffsi1k) { + this.soundReflLeftOffsi1k = soundReflLeftOffsi1k; + + } + + public String getSoundReflLeftOffsi2k() { + return soundReflLeftOffsi2k; + } + + + public void setSoundReflLeftOffsi2k(String soundReflLeftOffsi2k) { + this.soundReflLeftOffsi2k = soundReflLeftOffsi2k; + + } + + public String getSoundReflLeftOffsi4k() { + return soundReflLeftOffsi4k; + } + + + public void setSoundReflLeftOffsi4k(String soundReflLeftOffsi4k) { + this.soundReflLeftOffsi4k = soundReflLeftOffsi4k; + + } + + public String getSoundReflLeftAtten() { + return soundReflLeftAtten; + } + + + public void setSoundReflLeftAtten(String soundReflLeftAtten) { + this.soundReflLeftAtten = soundReflLeftAtten; + + } + + public String getSoundReflRightIpsi500() { + return soundReflRightIpsi500; + } + + + public void setSoundReflRightIpsi500(String soundReflRightIpsi500) { + this.soundReflRightIpsi500 = soundReflRightIpsi500; + + } + + public String getSoundReflRightIpsi1k() { + return soundReflRightIpsi1k; + } + + + public void setSoundReflRightIpsi1k(String soundReflRightIpsi1k) { + this.soundReflRightIpsi1k = soundReflRightIpsi1k; + + } + + public String getSoundReflRightIpsi2k() { + return soundReflRightIpsi2k; + } + + + public void setSoundReflRightIpsi2k(String soundReflRightIpsi2k) { + this.soundReflRightIpsi2k = soundReflRightIpsi2k; + + } + + public String getSoundReflRightIpsi4k() { + return soundReflRightIpsi4k; + } + + + public void setSoundReflRightIpsi4k(String soundReflRightIpsi4k) { + this.soundReflRightIpsi4k = soundReflRightIpsi4k; + + } + + public String getSoundReflRightOffsi500() { + return soundReflRightOffsi500; + } + + + public void setSoundReflRightOffsi500(String soundReflRightOffsi500) { + this.soundReflRightOffsi500 = soundReflRightOffsi500; + + } + + public String getSoundReflRightOffsi1k() { + return soundReflRightOffsi1k; + } + + + public void setSoundReflRightOffsi1k(String soundReflRightOffsi1k) { + this.soundReflRightOffsi1k = soundReflRightOffsi1k; + + } + + public String getSoundReflRightOffsi2k() { + return soundReflRightOffsi2k; + } + + + public void setSoundReflRightOffsi2k(String soundReflRightOffsi2k) { + this.soundReflRightOffsi2k = soundReflRightOffsi2k; + + } + + public String getSoundReflRightOffsi4k() { + return soundReflRightOffsi4k; + } + + + public void setSoundReflRightOffsi4k(String soundReflRightOffsi4k) { + this.soundReflRightOffsi4k = soundReflRightOffsi4k; + + } + + public String getSoundReflRightAtten() { + return soundReflRightAtten; + } + + + public void setSoundReflRightAtten(String soundReflRightAtten) { + this.soundReflRightAtten = soundReflRightAtten; + + } + + public Integer getAabrLeftIfPass() { + return aabrLeftIfPass; + } + + + public void setAabrLeftIfPass(Integer aabrLeftIfPass) { + this.aabrLeftIfPass = aabrLeftIfPass; + + } + + public Integer getAabrRightIfPass() { + return aabrRightIfPass; + } + + + public void setAabrRightIfPass(Integer aabrRightIfPass) { + this.aabrRightIfPass = aabrRightIfPass; + + } + + public String getAssrLeft500() { + return assrLeft500; + } + + + public void setAssrLeft500(String assrLeft500) { + this.assrLeft500 = assrLeft500; + + } + + public String getAssrLeft1k() { + return assrLeft1k; + } + + + public void setAssrLeft1k(String assrLeft1k) { + this.assrLeft1k = assrLeft1k; + + } + + public String getAssrLeft2k() { + return assrLeft2k; + } + + + public void setAssrLeft2k(String assrLeft2k) { + this.assrLeft2k = assrLeft2k; + + } + + public String getAssrLeft4k() { + return assrLeft4k; + } + + + public void setAssrLeft4k(String assrLeft4k) { + this.assrLeft4k = assrLeft4k; + + } + + public String getAssrRight500() { + return assrRight500; + } + + + public void setAssrRight500(String assrRight500) { + this.assrRight500 = assrRight500; + + } + + public String getAssrRight1k() { + return assrRight1k; + } + + + public void setAssrRight1k(String assrRight1k) { + this.assrRight1k = assrRight1k; + + } + + public String getAssrRight2k() { + return assrRight2k; + } + + + public void setAssrRight2k(String assrRight2k) { + this.assrRight2k = assrRight2k; + + } + + public String getAssrRight4k() { + return assrRight4k; + } + + + public void setAssrRight4k(String assrRight4k) { + this.assrRight4k = assrRight4k; + + } + + public String getDiagnHandSugge() { + return diagnHandSugge; + } + + + public void setDiagnHandSugge(String diagnHandSugge) { + this.diagnHandSugge = diagnHandSugge; + + } + + public String getDiagnGuideSugge() { + return diagnGuideSugge; + } + + + public void setDiagnGuideSugge(String diagnGuideSugge) { + this.diagnGuideSugge = diagnGuideSugge; + + } + + public String getDiagnDoctorId() { + return diagnDoctorId; + } + + + public void setDiagnDoctorId(String diagnDoctorId) { + this.diagnDoctorId = diagnDoctorId; + + } + + public Date getDiagnNextTime() { + return diagnNextTime; + } + + + public void setDiagnNextTime(Date diagnNextTime) { + this.diagnNextTime = diagnNextTime; + + } + + public Date getCreateTime() { + return createTime; + } + + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + + } + + public String getCreateId() { + return createId; + } + + + public void setCreateId(String createId) { + this.createId = createId; + + } + + public String getModifyId() { + return modifyId; + } + + + public void setModifyId(String modifyId) { + this.modifyId = modifyId; + + } + + public Date getModifyTime() { + return modifyTime; + } + + + public void setModifyTime(Date modifyTime) { + this.modifyTime = modifyTime; + + } + + public Integer getIfdel() { + return ifdel; + } + + + public void setIfdel(Integer ifdel) { + this.ifdel = ifdel; + + } + + public Integer getEnalble() { + return enalble; + } + + + public void setEnalble(Integer enalble) { + this.enalble = enalble; + + } +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarHearingDiagnoseQuery.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarHearingDiagnoseQuery.java new file mode 100644 index 0000000..3e69c1e --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/BabyPatientExtendEarHearingDiagnoseQuery.java @@ -0,0 +1,1372 @@ +package com.lyms.platform.permission.model; + + +import com.lyms.platform.common.dao.BaseQuery; +import com.lyms.platform.pojo.BabyModel; + +import java.util.Date; + + +public class BabyPatientExtendEarHearingDiagnoseQuery extends BaseQuery { + /** + * 鍎跨淇℃伅 + */ + private BabyModel babyModel; + + /** + * 涓婚敭 + */ + private String id; + /** + * 鍎跨妗fID + */ + private String babyId; + /** + * 妫娴嬪尰闄D + */ + private String hospitalId; + /** + * 璇婃柇鏃堕棿 + */ + private Date diagnoseTime; + /** + * 楂樺嵄鍥犵礌 + */ + private String highFactor; + /** + * ABR娼滀紡鏈熷乏鑰砫BnHL + */ + private String abrLeftDbnhl; + /** + * ABR娼滀紡鏈熷乏鑰矷娉 + */ + private String abrLeftLWave; + /** + * ABR娼滀紡鏈熷乏鑰矷II娉 + */ + private String abrLeftLllWave; + /** + * ABR娼滀紡鏈熷乏鑰砎娉 + */ + private String abrLeftVWave; + /** + * ABR娼滀紡鏈熷乏鑰冲绛栨帺钄藉己搴 + */ + private String abrLeftShield; + /** + * ABR娼滀紡鏈熷彸鑰砫BnHL + */ + private String abrRightDbnhl; + /** + * ABR娼滀紡鏈熷彸鑰矷娉 + */ + private String abrRightLWave; + /** + * ABR娼滀紡鏈熷彸鑰矷II娉 + */ + private String abrRightLllWave; + /** + * ABR娼滀紡鏈熷彸鑰砎娉 + */ + private String abrRightVWave; + /** + * ABR娼滀紡鏈熷彸鑰冲绛栨帺钄藉己搴 + */ + private String abrRightShield; + /** + * ABR闃堝煎乏鑰矰bnHL + */ + private String abrThrLeftDbnhl; + /** + * ABR闃堝煎乏鑰矼S + */ + private String abrThrLeftMs; + /** + * ABR闃堝煎乏鑰冲渚ф帺钄藉己搴BnHl + */ + private String abrThrLeftShieldDbnhl; + /** + * ABR闃堝煎彸鑰矰bnHL + */ + private String abrThrRightDbnhl; + /** + * ABR闃堝煎彸鑰矼S + */ + private String abrThrRightMs; + /** + * ABR闃堝煎彸鑰冲渚ф帺钄藉己搴BnHl + */ + private String abrThrRightShieldDbnhl; + /** + * ABR楠ㄥ闃鍊煎乏鑰砫BnHL + */ + private String abrBcLeftThrDbnhl; + /** + * ABR楠ㄥ闃鍊煎乏鑰砿s + */ + private String abrBcLeftThrMs; + /** + * ABR楠ㄥ闃鍊煎乏鑰冲渚ф帺钄藉己搴BnHL + */ + private String abrBcLeftThrShieldDbnhl; + /** + * ABR楠ㄥ闃鍊煎彸鑰砫BnHL + */ + private String abrBcRightThrDbnhl; + /** + * ABR楠ㄥ闃鍊煎彸鑰砿s + */ + private String abrBcRightThrMs; + /** + * ABR楠ㄥ闃鍊煎彸鑰冲渚ф帺钄藉己搴BnHL + */ + private String abrBcRightThrShieldDbnhl; + /** + * 鍙嶅簲闃鍊煎乏鑰砫BnHL + */ + private String reactionThrLeftDbnhl; + /** + * 鍙嶅簲闃鍊煎乏鑰冲渚у睆钄藉己搴BnHL + */ + private String reactionThrLeftShieldDbnhl; + /** + * 鍙嶅簲闃鍊煎彸鑰砫BnHL + */ + private String reactionThrRightDbnhl; + /** + * 鍙嶅簲闃鍊煎彸鑰冲渚ф帺钄藉己搴BnHL + */ + private String reactionThrRightShieldDbnhl; + /** + * 鑰冲0鍙戝皠宸﹁750Hz + */ + private String oaeLeft750; + /** + * 鑰冲0鍙戝皠宸﹁1KHz + */ + private String oaeLeft1k; + /** + * 鑰冲0鍙戝皠宸﹁2KHz + */ + private String oaeLeft2k; + /** + * 鑰冲0鍙戝皠宸﹁3KHz + */ + private String oaeLeft3k; + /** + * 鑰冲0鍙戝皠宸﹁4KHz + */ + private String oaeLeft4k; + /** + * 鑰冲0鍙戝皠宸﹁6KHz + */ + private String oaeLeft6k; + /** + * 鑰冲0鍙戝皠宸﹁8KHz + */ + private String oaeLeft8k; + /** + * 鑰冲0鍙戝皠宸﹁10KHz + */ + private String oaeLeft10k; + /** + * 鑰冲0鍙戝皠鍙宠750Hz + */ + private String oaeRight750; + /** + * 鑰冲0鍙戝皠鍙宠1KHz + */ + private String oaeRight1k; + /** + * 鑰冲0鍙戝皠鍙宠2KHz + */ + private String oaeRight2k; + /** + * 鑰冲0鍙戝皠鍙宠3KHz + */ + private String oaeRight3k; + /** + * 鑰冲0鍙戝皠鍙宠4KHz + */ + private String oaeRight4k; + /** + * 鑰冲0鍙戝皠鍙宠6KHz + */ + private String oaeRight6k; + /** + * 鑰冲0鍙戝皠鍙宠8KHz + */ + private String oaeRight8k; + /** + * 鑰冲0鍙戝皠鍙宠10KHz + */ + private String oaeRight10k; + /** + * 澹板绾冲乏鑰虫洸绾跨被鍨 + */ + private String acadLeftCurveType; + /** + * 澹板绾冲乏鑰抽紦瀹ゅ帇 + */ + private String acadLeftDrumCp; + /** + * 澹板绾冲乏鑰冲0椤 + */ + private String acadLeftAcco; + /** + * 澹板绾冲乏鑰冲鑰抽亾瀹圭Н + */ + private String acadLeftSecondoVolume; + /** + * 澹板绾冲乏鑰冲潯搴 + */ + private String acadLeftGradient; + /** + * 澹板绾冲乏鑰1K澹板弽灏勯榾鍊 + */ + private String acadLeft1kReflectThre; + /** + * 澹板绾冲彸鑰虫洸绾跨被鍨 + */ + private String acadRightCurveType; + /** + * 澹板绾冲彸鑰抽紦瀹ゅ帇 + */ + private String acadRightDrumCp; + /** + * 澹板绾冲彸鑰冲0椤 + */ + private String acadRightAcco; + /** + * 澹板绾冲彸鑰冲鑰抽亾瀹圭Н + */ + private String acadRightSecondoVolume; + /** + * 澹板绾冲彸鑰冲潯搴 + */ + private String acadRightGradient; + /** + * 澹板绾冲彸鑰1K澹板弽灏勯榾鍊 + */ + private String acadRight1kReflectThre; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲悓渚500Hz + */ + private String soundReflLeftIpsi500; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲悓渚1KHz + */ + private String soundReflLeftIpsi1k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲悓渚2KHz + */ + private String soundReflLeftIpsi2k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲悓渚4KHz + */ + private String soundReflLeftIpsi4k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲渚500Hz + */ + private String soundReflLeftOffsi500; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲渚1KHz + */ + private String soundReflLeftOffsi1k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲渚2KHz + */ + private String soundReflLeftOffsi2k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲渚4KHz + */ + private String soundReflLeftOffsi4k; + /** + * 澹板弽灏勯榾鍊煎乏鑰冲0鍙嶅皠琛板噺 + */ + private String soundReflLeftAtten; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲悓渚500Hz + */ + private String soundReflRightIpsi500; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲悓渚1KHz + */ + private String soundReflRightIpsi1k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲悓渚2KHz + */ + private String soundReflRightIpsi2k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲悓渚4KHz + */ + private String soundReflRightIpsi4k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲渚500Hz + */ + private String soundReflRightOffsi500; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲渚1KHz + */ + private String soundReflRightOffsi1k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲渚2KHz + */ + private String soundReflRightOffsi2k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲渚4KHz + */ + private String soundReflRightOffsi4k; + /** + * 澹板弽灏勯榾鍊煎彸鑰冲0鍙嶅皠琛板噺 + */ + private String soundReflRightAtten; + /** + * AABR宸﹁虫槸鍚﹂氳繃 + */ + private Integer aabrLeftIfPass; + /** + * AABR鍙宠虫槸鍚﹂氳繃 + */ + private Integer aabrRightIfPass; + /** + * ASSR宸﹁500Hz + */ + private String assrLeft500; + /** + * ASSR宸﹁1KHz + */ + private String assrLeft1k; + /** + * ASSR宸﹁2KHz + */ + private String assrLeft2k; + /** + * ASSR宸﹁4KHz + */ + private String assrLeft4k; + /** + * ASSR鍙宠500Hz + */ + private String assrRight500; + /** + * ASSR鍙宠1KHz + */ + private String assrRight1k; + /** + * ASSR鍙宠2KHz + */ + private String assrRight2k; + /** + * ASSR鍙宠4KHz + */ + private String assrRight4k; + /** + * 璇婃柇鎸囧澶勭悊鎰忚 + */ + private String diagnHandSugge; + /** + * 璇婃柇鎸囧鎸囧鎰忚 + */ + private String diagnGuideSugge; + /** + * 璇婃柇鎸囧璇婃柇鍖荤敓 + */ + private String diagnDoctorId; + /** + * 璇婃柇鎸囧棰勭害涓嬫璇婃柇鏃堕棿 + */ + private Date diagnNextTime; + /** + * 鍒涘缓鏃堕棿 + */ + private Date createTime; + /** + * 鍒涘缓ID + */ + private String createId; + /** + * 淇敼浜篿d + */ + private String modifyId; + /** + * 淇敼鏃堕棿 + */ + private Date modifyTime; + /** + * 鏄惁鍒犻櫎 + */ + private Integer ifdel; + /** + * 鐘舵 + */ + private Integer enalble; + + public String getId() { + return id; + } + + + public void setId(String id) { + this.id = id; + + } + + public String getBabyId() { + return babyId; + } + + public void setBabyId(String babyId) { + this.babyId = babyId; + } + + public String getHospitalId() { + return hospitalId; + } + + + public void setHospitalId(String hospitalId) { + this.hospitalId = hospitalId; + + } + + public Date getDiagnoseTime() { + return diagnoseTime; + } + + + public void setDiagnoseTime(Date diagnoseTime) { + this.diagnoseTime = diagnoseTime; + + } + + public String getHighFactor() { + return highFactor; + } + + + public void setHighFactor(String highFactor) { + this.highFactor = highFactor; + + } + + public String getAbrLeftDbnhl() { + return abrLeftDbnhl; + } + + + public void setAbrLeftDbnhl(String abrLeftDbnhl) { + this.abrLeftDbnhl = abrLeftDbnhl; + + } + + public String getAbrLeftLWave() { + return abrLeftLWave; + } + + + public void setAbrLeftLWave(String abrLeftLWave) { + this.abrLeftLWave = abrLeftLWave; + + } + + public String getAbrLeftLllWave() { + return abrLeftLllWave; + } + + + public void setAbrLeftLllWave(String abrLeftLllWave) { + this.abrLeftLllWave = abrLeftLllWave; + + } + + public String getAbrLeftVWave() { + return abrLeftVWave; + } + + + public void setAbrLeftVWave(String abrLeftVWave) { + this.abrLeftVWave = abrLeftVWave; + + } + + public String getAbrLeftShield() { + return abrLeftShield; + } + + + public void setAbrLeftShield(String abrLeftShield) { + this.abrLeftShield = abrLeftShield; + + } + + public String getAbrRightDbnhl() { + return abrRightDbnhl; + } + + + public void setAbrRightDbnhl(String abrRightDbnhl) { + this.abrRightDbnhl = abrRightDbnhl; + + } + + public String getAbrRightLWave() { + return abrRightLWave; + } + + + public void setAbrRightLWave(String abrRightLWave) { + this.abrRightLWave = abrRightLWave; + + } + + public String getAbrRightLllWave() { + return abrRightLllWave; + } + + + public void setAbrRightLllWave(String abrRightLllWave) { + this.abrRightLllWave = abrRightLllWave; + + } + + public String getAbrRightVWave() { + return abrRightVWave; + } + + + public void setAbrRightVWave(String abrRightVWave) { + this.abrRightVWave = abrRightVWave; + + } + + public String getAbrRightShield() { + return abrRightShield; + } + + + public void setAbrRightShield(String abrRightShield) { + this.abrRightShield = abrRightShield; + + } + + public String getAbrThrLeftDbnhl() { + return abrThrLeftDbnhl; + } + + + public void setAbrThrLeftDbnhl(String abrThrLeftDbnhl) { + this.abrThrLeftDbnhl = abrThrLeftDbnhl; + + } + + public String getAbrThrLeftMs() { + return abrThrLeftMs; + } + + + public void setAbrThrLeftMs(String abrThrLeftMs) { + this.abrThrLeftMs = abrThrLeftMs; + + } + + public String getAbrThrLeftShieldDbnhl() { + return abrThrLeftShieldDbnhl; + } + + + public void setAbrThrLeftShieldDbnhl(String abrThrLeftShieldDbnhl) { + this.abrThrLeftShieldDbnhl = abrThrLeftShieldDbnhl; + + } + + public String getAbrThrRightDbnhl() { + return abrThrRightDbnhl; + } + + + public void setAbrThrRightDbnhl(String abrThrRightDbnhl) { + this.abrThrRightDbnhl = abrThrRightDbnhl; + + } + + public String getAbrThrRightMs() { + return abrThrRightMs; + } + + + public void setAbrThrRightMs(String abrThrRightMs) { + this.abrThrRightMs = abrThrRightMs; + + } + + public String getAbrThrRightShieldDbnhl() { + return abrThrRightShieldDbnhl; + } + + + public void setAbrThrRightShieldDbnhl(String abrThrRightShieldDbnhl) { + this.abrThrRightShieldDbnhl = abrThrRightShieldDbnhl; + + } + + public String getAbrBcLeftThrDbnhl() { + return abrBcLeftThrDbnhl; + } + + + public void setAbrBcLeftThrDbnhl(String abrBcLeftThrDbnhl) { + this.abrBcLeftThrDbnhl = abrBcLeftThrDbnhl; + + } + + public String getAbrBcLeftThrMs() { + return abrBcLeftThrMs; + } + + + public void setAbrBcLeftThrMs(String abrBcLeftThrMs) { + this.abrBcLeftThrMs = abrBcLeftThrMs; + + } + + public String getAbrBcLeftThrShieldDbnhl() { + return abrBcLeftThrShieldDbnhl; + } + + + public void setAbrBcLeftThrShieldDbnhl(String abrBcLeftThrShieldDbnhl) { + this.abrBcLeftThrShieldDbnhl = abrBcLeftThrShieldDbnhl; + + } + + public String getAbrBcRightThrDbnhl() { + return abrBcRightThrDbnhl; + } + + + public void setAbrBcRightThrDbnhl(String abrBcRightThrDbnhl) { + this.abrBcRightThrDbnhl = abrBcRightThrDbnhl; + + } + + public String getAbrBcRightThrMs() { + return abrBcRightThrMs; + } + + + public void setAbrBcRightThrMs(String abrBcRightThrMs) { + this.abrBcRightThrMs = abrBcRightThrMs; + + } + + public String getAbrBcRightThrShieldDbnhl() { + return abrBcRightThrShieldDbnhl; + } + + + public void setAbrBcRightThrShieldDbnhl(String abrBcRightThrShieldDbnhl) { + this.abrBcRightThrShieldDbnhl = abrBcRightThrShieldDbnhl; + + } + + public String getReactionThrLeftDbnhl() { + return reactionThrLeftDbnhl; + } + + + public void setReactionThrLeftDbnhl(String reactionThrLeftDbnhl) { + this.reactionThrLeftDbnhl = reactionThrLeftDbnhl; + + } + + public String getReactionThrLeftShieldDbnhl() { + return reactionThrLeftShieldDbnhl; + } + + + public void setReactionThrLeftShieldDbnhl(String reactionThrLeftShieldDbnhl) { + this.reactionThrLeftShieldDbnhl = reactionThrLeftShieldDbnhl; + + } + + public String getReactionThrRightDbnhl() { + return reactionThrRightDbnhl; + } + + + public void setReactionThrRightDbnhl(String reactionThrRightDbnhl) { + this.reactionThrRightDbnhl = reactionThrRightDbnhl; + + } + + public String getReactionThrRightShieldDbnhl() { + return reactionThrRightShieldDbnhl; + } + + + public void setReactionThrRightShieldDbnhl(String reactionThrRightShieldDbnhl) { + this.reactionThrRightShieldDbnhl = reactionThrRightShieldDbnhl; + + } + + public String getOaeLeft750() { + return oaeLeft750; + } + + + public void setOaeLeft750(String oaeLeft750) { + this.oaeLeft750 = oaeLeft750; + + } + + public String getOaeLeft1k() { + return oaeLeft1k; + } + + + public void setOaeLeft1k(String oaeLeft1k) { + this.oaeLeft1k = oaeLeft1k; + + } + + public String getOaeLeft2k() { + return oaeLeft2k; + } + + + public void setOaeLeft2k(String oaeLeft2k) { + this.oaeLeft2k = oaeLeft2k; + + } + + public String getOaeLeft3k() { + return oaeLeft3k; + } + + + public void setOaeLeft3k(String oaeLeft3k) { + this.oaeLeft3k = oaeLeft3k; + + } + + public String getOaeLeft4k() { + return oaeLeft4k; + } + + + public void setOaeLeft4k(String oaeLeft4k) { + this.oaeLeft4k = oaeLeft4k; + + } + + public String getOaeLeft6k() { + return oaeLeft6k; + } + + + public void setOaeLeft6k(String oaeLeft6k) { + this.oaeLeft6k = oaeLeft6k; + + } + + public String getOaeLeft8k() { + return oaeLeft8k; + } + + + public void setOaeLeft8k(String oaeLeft8k) { + this.oaeLeft8k = oaeLeft8k; + + } + + public String getOaeLeft10k() { + return oaeLeft10k; + } + + + public void setOaeLeft10k(String oaeLeft10k) { + this.oaeLeft10k = oaeLeft10k; + + } + + public String getOaeRight750() { + return oaeRight750; + } + + + public void setOaeRight750(String oaeRight750) { + this.oaeRight750 = oaeRight750; + + } + + public String getOaeRight1k() { + return oaeRight1k; + } + + + public void setOaeRight1k(String oaeRight1k) { + this.oaeRight1k = oaeRight1k; + + } + + public String getOaeRight2k() { + return oaeRight2k; + } + + + public void setOaeRight2k(String oaeRight2k) { + this.oaeRight2k = oaeRight2k; + + } + + public String getOaeRight3k() { + return oaeRight3k; + } + + + public void setOaeRight3k(String oaeRight3k) { + this.oaeRight3k = oaeRight3k; + + } + + public String getOaeRight4k() { + return oaeRight4k; + } + + + public void setOaeRight4k(String oaeRight4k) { + this.oaeRight4k = oaeRight4k; + + } + + public String getOaeRight6k() { + return oaeRight6k; + } + + + public void setOaeRight6k(String oaeRight6k) { + this.oaeRight6k = oaeRight6k; + + } + + public String getOaeRight8k() { + return oaeRight8k; + } + + + public void setOaeRight8k(String oaeRight8k) { + this.oaeRight8k = oaeRight8k; + + } + + public String getOaeRight10k() { + return oaeRight10k; + } + + + public void setOaeRight10k(String oaeRight10k) { + this.oaeRight10k = oaeRight10k; + + } + + public String getAcadLeftCurveType() { + return acadLeftCurveType; + } + + + public void setAcadLeftCurveType(String acadLeftCurveType) { + this.acadLeftCurveType = acadLeftCurveType; + + } + + public String getAcadLeftDrumCp() { + return acadLeftDrumCp; + } + + + public void setAcadLeftDrumCp(String acadLeftDrumCp) { + this.acadLeftDrumCp = acadLeftDrumCp; + + } + + public String getAcadLeftAcco() { + return acadLeftAcco; + } + + + public void setAcadLeftAcco(String acadLeftAcco) { + this.acadLeftAcco = acadLeftAcco; + + } + + public String getAcadLeftSecondoVolume() { + return acadLeftSecondoVolume; + } + + + public void setAcadLeftSecondoVolume(String acadLeftSecondoVolume) { + this.acadLeftSecondoVolume = acadLeftSecondoVolume; + + } + + public String getAcadLeftGradient() { + return acadLeftGradient; + } + + + public void setAcadLeftGradient(String acadLeftGradient) { + this.acadLeftGradient = acadLeftGradient; + + } + + public String getAcadLeft1kReflectThre() { + return acadLeft1kReflectThre; + } + + + public void setAcadLeft1kReflectThre(String acadLeft1kReflectThre) { + this.acadLeft1kReflectThre = acadLeft1kReflectThre; + + } + + public String getAcadRightCurveType() { + return acadRightCurveType; + } + + + public void setAcadRightCurveType(String acadRightCurveType) { + this.acadRightCurveType = acadRightCurveType; + + } + + public String getAcadRightDrumCp() { + return acadRightDrumCp; + } + + + public void setAcadRightDrumCp(String acadRightDrumCp) { + this.acadRightDrumCp = acadRightDrumCp; + + } + + public String getAcadRightAcco() { + return acadRightAcco; + } + + + public void setAcadRightAcco(String acadRightAcco) { + this.acadRightAcco = acadRightAcco; + + } + + public String getAcadRightSecondoVolume() { + return acadRightSecondoVolume; + } + + + public void setAcadRightSecondoVolume(String acadRightSecondoVolume) { + this.acadRightSecondoVolume = acadRightSecondoVolume; + + } + + public String getAcadRightGradient() { + return acadRightGradient; + } + + + public void setAcadRightGradient(String acadRightGradient) { + this.acadRightGradient = acadRightGradient; + + } + + public String getAcadRight1kReflectThre() { + return acadRight1kReflectThre; + } + + + public void setAcadRight1kReflectThre(String acadRight1kReflectThre) { + this.acadRight1kReflectThre = acadRight1kReflectThre; + + } + + public String getSoundReflLeftIpsi500() { + return soundReflLeftIpsi500; + } + + + public void setSoundReflLeftIpsi500(String soundReflLeftIpsi500) { + this.soundReflLeftIpsi500 = soundReflLeftIpsi500; + + } + + public String getSoundReflLeftIpsi1k() { + return soundReflLeftIpsi1k; + } + + + public void setSoundReflLeftIpsi1k(String soundReflLeftIpsi1k) { + this.soundReflLeftIpsi1k = soundReflLeftIpsi1k; + + } + + public String getSoundReflLeftIpsi2k() { + return soundReflLeftIpsi2k; + } + + + public void setSoundReflLeftIpsi2k(String soundReflLeftIpsi2k) { + this.soundReflLeftIpsi2k = soundReflLeftIpsi2k; + + } + + public String getSoundReflLeftIpsi4k() { + return soundReflLeftIpsi4k; + } + + + public void setSoundReflLeftIpsi4k(String soundReflLeftIpsi4k) { + this.soundReflLeftIpsi4k = soundReflLeftIpsi4k; + + } + + public String getSoundReflLeftOffsi500() { + return soundReflLeftOffsi500; + } + + + public void setSoundReflLeftOffsi500(String soundReflLeftOffsi500) { + this.soundReflLeftOffsi500 = soundReflLeftOffsi500; + + } + + public String getSoundReflLeftOffsi1k() { + return soundReflLeftOffsi1k; + } + + + public void setSoundReflLeftOffsi1k(String soundReflLeftOffsi1k) { + this.soundReflLeftOffsi1k = soundReflLeftOffsi1k; + + } + + public String getSoundReflLeftOffsi2k() { + return soundReflLeftOffsi2k; + } + + + public void setSoundReflLeftOffsi2k(String soundReflLeftOffsi2k) { + this.soundReflLeftOffsi2k = soundReflLeftOffsi2k; + + } + + public String getSoundReflLeftOffsi4k() { + return soundReflLeftOffsi4k; + } + + + public void setSoundReflLeftOffsi4k(String soundReflLeftOffsi4k) { + this.soundReflLeftOffsi4k = soundReflLeftOffsi4k; + + } + + public String getSoundReflLeftAtten() { + return soundReflLeftAtten; + } + + + public void setSoundReflLeftAtten(String soundReflLeftAtten) { + this.soundReflLeftAtten = soundReflLeftAtten; + + } + + public String getSoundReflRightIpsi500() { + return soundReflRightIpsi500; + } + + + public void setSoundReflRightIpsi500(String soundReflRightIpsi500) { + this.soundReflRightIpsi500 = soundReflRightIpsi500; + + } + + public String getSoundReflRightIpsi1k() { + return soundReflRightIpsi1k; + } + + + public void setSoundReflRightIpsi1k(String soundReflRightIpsi1k) { + this.soundReflRightIpsi1k = soundReflRightIpsi1k; + + } + + public String getSoundReflRightIpsi2k() { + return soundReflRightIpsi2k; + } + + + public void setSoundReflRightIpsi2k(String soundReflRightIpsi2k) { + this.soundReflRightIpsi2k = soundReflRightIpsi2k; + + } + + public String getSoundReflRightIpsi4k() { + return soundReflRightIpsi4k; + } + + + public void setSoundReflRightIpsi4k(String soundReflRightIpsi4k) { + this.soundReflRightIpsi4k = soundReflRightIpsi4k; + + } + + public String getSoundReflRightOffsi500() { + return soundReflRightOffsi500; + } + + + public void setSoundReflRightOffsi500(String soundReflRightOffsi500) { + this.soundReflRightOffsi500 = soundReflRightOffsi500; + + } + + public String getSoundReflRightOffsi1k() { + return soundReflRightOffsi1k; + } + + + public void setSoundReflRightOffsi1k(String soundReflRightOffsi1k) { + this.soundReflRightOffsi1k = soundReflRightOffsi1k; + + } + + public String getSoundReflRightOffsi2k() { + return soundReflRightOffsi2k; + } + + + public void setSoundReflRightOffsi2k(String soundReflRightOffsi2k) { + this.soundReflRightOffsi2k = soundReflRightOffsi2k; + + } + + public String getSoundReflRightOffsi4k() { + return soundReflRightOffsi4k; + } + + + public void setSoundReflRightOffsi4k(String soundReflRightOffsi4k) { + this.soundReflRightOffsi4k = soundReflRightOffsi4k; + + } + + public String getSoundReflRightAtten() { + return soundReflRightAtten; + } + + + public void setSoundReflRightAtten(String soundReflRightAtten) { + this.soundReflRightAtten = soundReflRightAtten; + + } + + public Integer getAabrLeftIfPass() { + return aabrLeftIfPass; + } + + + public void setAabrLeftIfPass(Integer aabrLeftIfPass) { + this.aabrLeftIfPass = aabrLeftIfPass; + + } + + public Integer getAabrRightIfPass() { + return aabrRightIfPass; + } + + + public void setAabrRightIfPass(Integer aabrRightIfPass) { + this.aabrRightIfPass = aabrRightIfPass; + + } + + public String getAssrLeft500() { + return assrLeft500; + } + + + public void setAssrLeft500(String assrLeft500) { + this.assrLeft500 = assrLeft500; + + } + + public String getAssrLeft1k() { + return assrLeft1k; + } + + + public void setAssrLeft1k(String assrLeft1k) { + this.assrLeft1k = assrLeft1k; + + } + + public String getAssrLeft2k() { + return assrLeft2k; + } + + + public void setAssrLeft2k(String assrLeft2k) { + this.assrLeft2k = assrLeft2k; + + } + + public String getAssrLeft4k() { + return assrLeft4k; + } + + + public void setAssrLeft4k(String assrLeft4k) { + this.assrLeft4k = assrLeft4k; + + } + + public String getAssrRight500() { + return assrRight500; + } + + + public void setAssrRight500(String assrRight500) { + this.assrRight500 = assrRight500; + + } + + public String getAssrRight1k() { + return assrRight1k; + } + + + public void setAssrRight1k(String assrRight1k) { + this.assrRight1k = assrRight1k; + + } + + public String getAssrRight2k() { + return assrRight2k; + } + + + public void setAssrRight2k(String assrRight2k) { + this.assrRight2k = assrRight2k; + + } + + public String getAssrRight4k() { + return assrRight4k; + } + + + public void setAssrRight4k(String assrRight4k) { + this.assrRight4k = assrRight4k; + + } + + public String getDiagnHandSugge() { + return diagnHandSugge; + } + + + public void setDiagnHandSugge(String diagnHandSugge) { + this.diagnHandSugge = diagnHandSugge; + + } + + public String getDiagnGuideSugge() { + return diagnGuideSugge; + } + + + public void setDiagnGuideSugge(String diagnGuideSugge) { + this.diagnGuideSugge = diagnGuideSugge; + + } + + public String getDiagnDoctorId() { + return diagnDoctorId; + } + + + public void setDiagnDoctorId(String diagnDoctorId) { + this.diagnDoctorId = diagnDoctorId; + + } + + public Date getDiagnNextTime() { + return diagnNextTime; + } + + + public void setDiagnNextTime(Date diagnNextTime) { + this.diagnNextTime = diagnNextTime; + + } + + public Date getCreateTime() { + return createTime; + } + + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + + } + + public String getCreateId() { + return createId; + } + + + public void setCreateId(String createId) { + this.createId = createId; + + } + + public String getModifyId() { + return modifyId; + } + + + public void setModifyId(String modifyId) { + this.modifyId = modifyId; + + } + + public Date getModifyTime() { + return modifyTime; + } + + + public void setModifyTime(Date modifyTime) { + this.modifyTime = modifyTime; + + } + + public Integer getIfdel() { + return ifdel; + } + + + public void setIfdel(Integer ifdel) { + this.ifdel = ifdel; + + } + + public Integer getEnalble() { + return enalble; + } + + + public void setEnalble(Integer enalble) { + this.enalble = enalble; + + } +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/FollowUp.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/FollowUp.java deleted file mode 100644 index 9e28bb7..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/FollowUp.java +++ /dev/null @@ -1,325 +0,0 @@ -package com.lyms.platform.permission.model; - -import java.util.Date; - -public class FollowUp { - /** - * 主键 - */ - private String id; - /** - * 儿童档案ID - */ - private String babyId; - /** - * 随访时间 - */ - private Date followTime; - /** - * 随访地点 - */ - private String followAddr; - /** - * 确诊时间 - */ - private Date markTime; - /** - * 确诊结果 - */ - private String markResult; - /** - * 确诊详情 - */ - private String markDetail; - /** - * 随访记录 - */ - private String followInfo; - /** - * 助听器(0-左耳,2-右耳,3-全部) - */ - private Integer audiphone; - /** - * 手术(0-左耳,2-右耳,3-全部) - */ - private Integer operation; - /** - * 人工耳蜗(0-左耳,2-右耳,3-全部) - */ - private Integer artifiCochlea; - /** - * 指导意见 - */ - private String guideOpinion; - /** - * 随访医生名称 - */ - private String followDoctorName; - /** - * 随访医生id - */ - private String followDoctorId; - /** - * 预约复查时间 - */ - private Date nextTime; - /** - * 是否删除 - */ - private Integer ifdel; - /** - * 是否结案 0-未结案,1-结案 - */ - private Integer ifclose; - /** - * 医院ID - */ - private String hospitalId; - /** - * 修改时间 - */ - private Date modifyTime; - /** - * 修改人id - */ - private String modifyId; - /** - * 创建时间 - */ - private Date createTime; - /** - * 创建人id - */ - private String createId; - /** - * 状态 - */ - private Integer enalble; - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - - } - - public String getBabyId() { - return babyId; - } - - public void setBabyId(String babyId) { - this.babyId = babyId; - } - - public Date getFollowTime() { - return followTime; - } - - - public void setFollowTime(Date followTime) { - this.followTime = followTime; - - } - - public String getFollowAddr() { - return followAddr; - } - - - public void setFollowAddr(String followAddr) { - this.followAddr = followAddr; - - } - - public Date getMarkTime() { - return markTime; - } - - - public void setMarkTime(Date markTime) { - this.markTime = markTime; - - } - - public String getMarkResult() { - return markResult; - } - - - public void setMarkResult(String markResult) { - this.markResult = markResult; - - } - - public String getMarkDetail() { - return markDetail; - } - - - public void setMarkDetail(String markDetail) { - this.markDetail = markDetail; - - } - - public String getFollowInfo() { - return followInfo; - } - - - public void setFollowInfo(String followInfo) { - this.followInfo = followInfo; - - } - - public Integer getAudiphone() { - return audiphone; - } - - - public void setAudiphone(Integer audiphone) { - this.audiphone = audiphone; - - } - - public Integer getOperation() { - return operation; - } - - - public void setOperation(Integer operation) { - this.operation = operation; - - } - - public Integer getArtifiCochlea() { - return artifiCochlea; - } - - - public void setArtifiCochlea(Integer artifiCochlea) { - this.artifiCochlea = artifiCochlea; - - } - - public String getGuideOpinion() { - return guideOpinion; - } - - - public void setGuideOpinion(String guideOpinion) { - this.guideOpinion = guideOpinion; - - } - - public String getFollowDoctorName() { - return followDoctorName; - } - - - public void setFollowDoctorName(String followDoctorName) { - this.followDoctorName = followDoctorName; - - } - - public String getFollowDoctorId() { - return followDoctorId; - } - - - public void setFollowDoctorId(String followDoctorId) { - this.followDoctorId = followDoctorId; - - } - - public Date getNextTime() { - return nextTime; - } - - - public void setNextTime(Date nextTime) { - this.nextTime = nextTime; - - } - - public Integer getIfdel() { - return ifdel; - } - - - public void setIfdel(Integer ifdel) { - this.ifdel = ifdel; - - } - - public Integer getIfclose() { - return ifclose; - } - - - public void setIfclose(Integer ifclose) { - this.ifclose = ifclose; - - } - - public String getHospitalId() { - return hospitalId; - } - - - public void setHospitalId(String hospitalId) { - this.hospitalId = hospitalId; - - } - - public Date getModifyTime() { - return modifyTime; - } - - - public void setModifyTime(Date modifyTime) { - this.modifyTime = modifyTime; - - } - - public String getModifyId() { - return modifyId; - } - - - public void setModifyId(String modifyId) { - this.modifyId = modifyId; - - } - - public Date getCreateTime() { - return createTime; - } - - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - - } - - public String getCreateId() { - return createId; - } - - - public void setCreateId(String createId) { - this.createId = createId; - - } - - public Integer getEnalble() { - return enalble; - } - - - public void setEnalble(Integer enalble) { - this.enalble = enalble; - - } -} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/FollowUpQuery.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/FollowUpQuery.java deleted file mode 100644 index f8fa969..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/FollowUpQuery.java +++ /dev/null @@ -1,330 +0,0 @@ -package com.lyms.platform.permission.model; - - -import com.lyms.platform.common.dao.BaseQuery; - -import java.util.Date; - - -public class FollowUpQuery extends BaseQuery { - /** - * 主键 - */ - private String id; - /** - * 儿童档案ID - */ - private String babyId; - /** - * 随访时间 - */ - private Date followTime; - /** - * 随访地点 - */ - private String followAddr; - /** - * 确诊时间 - */ - private Date markTime; - /** - * 确诊结果 - */ - private String markResult; - /** - * 确诊详情 - */ - private String markDetail; - /** - * 随访记录 - */ - private String followInfo; - /** - * 助听器(0-左耳,2-右耳,3-全部) - */ - private Integer audiphone; - /** - * 手术(0-左耳,2-右耳,3-全部) - */ - private Integer operation; - /** - * 人工耳蜗(0-左耳,2-右耳,3-全部) - */ - private Integer artifiCochlea; - /** - * 指导意见 - */ - private String guideOpinion; - /** - * 随访医生名称 - */ - private String followDoctorName; - /** - * 随访医生id - */ - private String followDoctorId; - /** - * 预约复查时间 - */ - private Date nextTime; - /** - * 是否删除 - */ - private Integer ifdel; - /** - * 是否结案 - */ - private Integer ifclose; - /** - * 医院ID - */ - private String hospitalId; - /** - * 修改时间 - */ - private Date modifyTime; - /** - * 修改人id - */ - private String modifyId; - /** - * 创建时间 - */ - private Date createTime; - /** - * 创建人id - */ - private String createId; - /** - * 状态 - */ - private Integer enalble; - - public String getId() { - return id; - } - - - public void setId(String id) { - this.id = id; - - } - - public String getBabyId() { - return babyId; - } - - public void setBabyId(String babyId) { - this.babyId = babyId; - } - - public Date getFollowTime() { - return followTime; - } - - - public void setFollowTime(Date followTime) { - this.followTime = followTime; - - } - - public String getFollowAddr() { - return followAddr; - } - - - public void setFollowAddr(String followAddr) { - this.followAddr = followAddr; - - } - - public Date getMarkTime() { - return markTime; - } - - - public void setMarkTime(Date markTime) { - this.markTime = markTime; - - } - - public String getMarkResult() { - return markResult; - } - - - public void setMarkResult(String markResult) { - this.markResult = markResult; - - } - - public String getMarkDetail() { - return markDetail; - } - - - public void setMarkDetail(String markDetail) { - this.markDetail = markDetail; - - } - - public String getFollowInfo() { - return followInfo; - } - - - public void setFollowInfo(String followInfo) { - this.followInfo = followInfo; - - } - - public Integer getAudiphone() { - return audiphone; - } - - - public void setAudiphone(Integer audiphone) { - this.audiphone = audiphone; - - } - - public Integer getOperation() { - return operation; - } - - - public void setOperation(Integer operation) { - this.operation = operation; - - } - - public Integer getArtifiCochlea() { - return artifiCochlea; - } - - - public void setArtifiCochlea(Integer artifiCochlea) { - this.artifiCochlea = artifiCochlea; - - } - - public String getGuideOpinion() { - return guideOpinion; - } - - - public void setGuideOpinion(String guideOpinion) { - this.guideOpinion = guideOpinion; - - } - - public String getFollowDoctorName() { - return followDoctorName; - } - - - public void setFollowDoctorName(String followDoctorName) { - this.followDoctorName = followDoctorName; - - } - - public String getFollowDoctorId() { - return followDoctorId; - } - - - public void setFollowDoctorId(String followDoctorId) { - this.followDoctorId = followDoctorId; - - } - - public Date getNextTime() { - return nextTime; - } - - - public void setNextTime(Date nextTime) { - this.nextTime = nextTime; - - } - - public Integer getIfdel() { - return ifdel; - } - - - public void setIfdel(Integer ifdel) { - this.ifdel = ifdel; - - } - - public Integer getIfclose() { - return ifclose; - } - - - public void setIfclose(Integer ifclose) { - this.ifclose = ifclose; - - } - - public String getHospitalId() { - return hospitalId; - } - - - public void setHospitalId(String hospitalId) { - this.hospitalId = hospitalId; - - } - - public Date getModifyTime() { - return modifyTime; - } - - - public void setModifyTime(Date modifyTime) { - this.modifyTime = modifyTime; - - } - - public String getModifyId() { - return modifyId; - } - - - public void setModifyId(String modifyId) { - this.modifyId = modifyId; - - } - - public Date getCreateTime() { - return createTime; - } - - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - - } - - public String getCreateId() { - return createId; - } - - - public void setCreateId(String createId) { - this.createId = createId; - - } - - public Integer getEnalble() { - return enalble; - } - - - public void setEnalble(Integer enalble) { - this.enalble = enalble; - - } -} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/HearingDiagnose.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/HearingDiagnose.java deleted file mode 100644 index d31ad7f..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/HearingDiagnose.java +++ /dev/null @@ -1,1376 +0,0 @@ -package com.lyms.platform.permission.model; - -import com.lyms.platform.pojo.BabyModel; - -import java.util.Date; - -public class HearingDiagnose { - /** - * 鍎跨淇℃伅 - */ - private BabyModel babyModel; - - /** - * 涓婚敭 - */ - private String id; - /** - * 鍎跨妗fID - */ - private String babyId; - /** - * 妫娴嬪尰闄D - */ - private String hospitalId; - /** - * 璇婃柇鏃堕棿 - */ - private Date diagnoseTime; - /** - * 楂樺嵄鍥犵礌 - */ - private String highFactor; - /** - * ABR娼滀紡鏈熷乏鑰砫BnHL - */ - private String abrLeftDbnhl; - /** - * ABR娼滀紡鏈熷乏鑰矷娉 - */ - private String abrLeftLWave; - /** - * ABR娼滀紡鏈熷乏鑰矷II娉 - */ - private String abrLeftLllWave; - /** - * ABR娼滀紡鏈熷乏鑰砎娉 - */ - private String abrLeftVWave; - /** - * ABR娼滀紡鏈熷乏鑰冲绛栨帺钄藉己搴 - */ - private String abrLeftShield; - /** - * ABR娼滀紡鏈熷彸鑰砫BnHL - */ - private String abrRightDbnhl; - /** - * ABR娼滀紡鏈熷彸鑰矷娉 - */ - private String abrRightLWave; - /** - * ABR娼滀紡鏈熷彸鑰矷II娉 - */ - private String abrRightLllWave; - /** - * ABR娼滀紡鏈熷彸鑰砎娉 - */ - private String abrRightVWave; - /** - * ABR娼滀紡鏈熷彸鑰冲绛栨帺钄藉己搴 - */ - private String abrRightShield; - /** - * ABR闃堝煎乏鑰矰bnHL - */ - private String abrThrLeftDbnhl; - /** - * ABR闃堝煎乏鑰矼S - */ - private String abrThrLeftMs; - /** - * ABR闃堝煎乏鑰冲渚ф帺钄藉己搴BnHl - */ - private String abrThrLeftShieldDbnhl; - /** - * ABR闃堝煎彸鑰矰bnHL - */ - private String abrThrRightDbnhl; - /** - * ABR闃堝煎彸鑰矼S - */ - private String abrThrRightMs; - /** - * ABR闃堝煎彸鑰冲渚ф帺钄藉己搴BnHl - */ - private String abrThrRightShieldDbnhl; - /** - * ABR楠ㄥ闃鍊煎乏鑰砫BnHL - */ - private String abrBcLeftThrDbnhl; - /** - * ABR楠ㄥ闃鍊煎乏鑰砿s - */ - private String abrBcLeftThrMs; - /** - * ABR楠ㄥ闃鍊煎乏鑰冲渚ф帺钄藉己搴BnHL - */ - private String abrBcLeftThrShieldDbnhl; - /** - * ABR楠ㄥ闃鍊煎彸鑰砫BnHL - */ - private String abrBcRightThrDbnhl; - /** - * ABR楠ㄥ闃鍊煎彸鑰砿s - */ - private String abrBcRightThrMs; - /** - * ABR楠ㄥ闃鍊煎彸鑰冲渚ф帺钄藉己搴BnHL - */ - private String abrBcRightThrShieldDbnhl; - /** - * 鍙嶅簲闃鍊煎乏鑰砫BnHL - */ - private String reactionThrLeftDbnhl; - /** - * 鍙嶅簲闃鍊煎乏鑰冲渚у睆钄藉己搴BnHL - */ - private String reactionThrLeftShieldDbnhl; - /** - * 鍙嶅簲闃鍊煎彸鑰砫BnHL - */ - private String reactionThrRightDbnhl; - /** - * 鍙嶅簲闃鍊煎彸鑰冲渚ф帺钄藉己搴BnHL - */ - private String reactionThrRightShieldDbnhl; - /** - * 鑰冲0鍙戝皠宸﹁750Hz - */ - private String oaeLeft750; - /** - * 鑰冲0鍙戝皠宸﹁1KHz - */ - private String oaeLeft1k; - /** - * 鑰冲0鍙戝皠宸﹁2KHz - */ - private String oaeLeft2k; - /** - * 鑰冲0鍙戝皠宸﹁3KHz - */ - private String oaeLeft3k; - /** - * 鑰冲0鍙戝皠宸﹁4KHz - */ - private String oaeLeft4k; - /** - * 鑰冲0鍙戝皠宸﹁6KHz - */ - private String oaeLeft6k; - /** - * 鑰冲0鍙戝皠宸﹁8KHz - */ - private String oaeLeft8k; - /** - * 鑰冲0鍙戝皠宸﹁10KHz - */ - private String oaeLeft10k; - /** - * 鑰冲0鍙戝皠鍙宠750Hz - */ - private String oaeRight750; - /** - * 鑰冲0鍙戝皠鍙宠1KHz - */ - private String oaeRight1k; - /** - * 鑰冲0鍙戝皠鍙宠2KHz - */ - private String oaeRight2k; - /** - * 鑰冲0鍙戝皠鍙宠3KHz - */ - private String oaeRight3k; - /** - * 鑰冲0鍙戝皠鍙宠4KHz - */ - private String oaeRight4k; - /** - * 鑰冲0鍙戝皠鍙宠6KHz - */ - private String oaeRight6k; - /** - * 鑰冲0鍙戝皠鍙宠8KHz - */ - private String oaeRight8k; - /** - * 鑰冲0鍙戝皠鍙宠10KHz - */ - private String oaeRight10k; - /** - * 澹板绾冲乏鑰虫洸绾跨被鍨 - */ - private String acadLeftCurveType; - /** - * 澹板绾冲乏鑰抽紦瀹ゅ帇 - */ - private String acadLeftDrumCp; - /** - * 澹板绾冲乏鑰冲0椤 - */ - private String acadLeftAcco; - /** - * 澹板绾冲乏鑰冲鑰抽亾瀹圭Н - */ - private String acadLeftSecondoVolume; - /** - * 澹板绾冲乏鑰冲潯搴 - */ - private String acadLeftGradient; - /** - * 澹板绾冲乏鑰1K澹板弽灏勯榾鍊 - */ - private String acadLeft1kReflectThre; - /** - * 澹板绾冲彸鑰虫洸绾跨被鍨 - */ - private String acadRightCurveType; - /** - * 澹板绾冲彸鑰抽紦瀹ゅ帇 - */ - private String acadRightDrumCp; - /** - * 澹板绾冲彸鑰冲0椤 - */ - private String acadRightAcco; - /** - * 澹板绾冲彸鑰冲鑰抽亾瀹圭Н - */ - private String acadRightSecondoVolume; - /** - * 澹板绾冲彸鑰冲潯搴 - */ - private String acadRightGradient; - /** - * 澹板绾冲彸鑰1K澹板弽灏勯榾鍊 - */ - private String acadRight1kReflectThre; - /** - * 澹板弽灏勯榾鍊煎乏鑰冲悓渚500Hz - */ - private String soundReflLeftIpsi500; - /** - * 澹板弽灏勯榾鍊煎乏鑰冲悓渚1KHz - */ - private String soundReflLeftIpsi1k; - /** - * 澹板弽灏勯榾鍊煎乏鑰冲悓渚2KHz - */ - private String soundReflLeftIpsi2k; - /** - * 澹板弽灏勯榾鍊煎乏鑰冲悓渚4KHz - */ - private String soundReflLeftIpsi4k; - /** - * 澹板弽灏勯榾鍊煎乏鑰冲渚500Hz - */ - private String soundReflLeftOffsi500; - /** - * 澹板弽灏勯榾鍊煎乏鑰冲渚1KHz - */ - private String soundReflLeftOffsi1k; - /** - * 澹板弽灏勯榾鍊煎乏鑰冲渚2KHz - */ - private String soundReflLeftOffsi2k; - /** - * 澹板弽灏勯榾鍊煎乏鑰冲渚4KHz - */ - private String soundReflLeftOffsi4k; - /** - * 澹板弽灏勯榾鍊煎乏鑰冲0鍙嶅皠琛板噺 - */ - private String soundReflLeftAtten; - /** - * 澹板弽灏勯榾鍊煎彸鑰冲悓渚500Hz - */ - private String soundReflRightIpsi500; - /** - * 澹板弽灏勯榾鍊煎彸鑰冲悓渚1KHz - */ - private String soundReflRightIpsi1k; - /** - * 澹板弽灏勯榾鍊煎彸鑰冲悓渚2KHz - */ - private String soundReflRightIpsi2k; - /** - * 澹板弽灏勯榾鍊煎彸鑰冲悓渚4KHz - */ - private String soundReflRightIpsi4k; - /** - * 澹板弽灏勯榾鍊煎彸鑰冲渚500Hz - */ - private String soundReflRightOffsi500; - /** - * 澹板弽灏勯榾鍊煎彸鑰冲渚1KHz - */ - private String soundReflRightOffsi1k; - /** - * 澹板弽灏勯榾鍊煎彸鑰冲渚2KHz - */ - private String soundReflRightOffsi2k; - /** - * 澹板弽灏勯榾鍊煎彸鑰冲渚4KHz - */ - private String soundReflRightOffsi4k; - /** - * 澹板弽灏勯榾鍊煎彸鑰冲0鍙嶅皠琛板噺 - */ - private String soundReflRightAtten; - /** - * AABR宸﹁虫槸鍚﹂氳繃 - */ - private Integer aabrLeftIfPass; - /** - * AABR鍙宠虫槸鍚﹂氳繃 - */ - private Integer aabrRightIfPass; - /** - * ASSR宸﹁500Hz - */ - private String assrLeft500; - /** - * ASSR宸﹁1KHz - */ - private String assrLeft1k; - /** - * ASSR宸﹁2KHz - */ - private String assrLeft2k; - /** - * ASSR宸﹁4KHz - */ - private String assrLeft4k; - /** - * ASSR鍙宠500Hz - */ - private String assrRight500; - /** - * ASSR鍙宠1KHz - */ - private String assrRight1k; - /** - * ASSR鍙宠2KHz - */ - private String assrRight2k; - /** - * ASSR鍙宠4KHz - */ - private String assrRight4k; - /** - * 璇婃柇鎸囧澶勭悊鎰忚 - */ - private String diagnHandSugge; - /** - * 璇婃柇鎸囧鎸囧鎰忚 - */ - private String diagnGuideSugge; - /** - * 璇婃柇鎸囧璇婃柇鍖荤敓 - */ - private String diagnDoctorId; - /** - * 璇婃柇鎸囧棰勭害涓嬫璇婃柇鏃堕棿 - */ - private Date diagnNextTime; - /** - * 鍒涘缓鏃堕棿 - */ - private Date createTime; - /** - * 鍒涘缓ID - */ - private String createId; - /** - * 淇敼浜篿d - */ - private String modifyId; - /** - * 淇敼鏃堕棿 - */ - private Date modifyTime; - /** - * 鏄惁鍒犻櫎 - */ - private Integer ifdel; - /** - * 鐘舵 - */ - private Integer enalble; - - public String getId() { - return id; - } - - public BabyModel getBabyModel() { - return babyModel; - } - - public void setBabyModel(BabyModel babyModel) { - this.babyModel = babyModel; - } - - public void setId(String id) { - this.id = id; - - } - - public String getBabyId() { - return babyId; - } - - public void setBabyId(String babyId) { - this.babyId = babyId; - } - - public String getHospitalId() { - return hospitalId; - } - - - public void setHospitalId(String hospitalId) { - this.hospitalId = hospitalId; - - } - - public Date getDiagnoseTime() { - return diagnoseTime; - } - - - public void setDiagnoseTime(Date diagnoseTime) { - this.diagnoseTime = diagnoseTime; - - } - - public String getHighFactor() { - return highFactor; - } - - - public void setHighFactor(String highFactor) { - this.highFactor = highFactor; - - } - - public String getAbrLeftDbnhl() { - return abrLeftDbnhl; - } - - - public void setAbrLeftDbnhl(String abrLeftDbnhl) { - this.abrLeftDbnhl = abrLeftDbnhl; - - } - - public String getAbrLeftLWave() { - return abrLeftLWave; - } - - - public void setAbrLeftLWave(String abrLeftLWave) { - this.abrLeftLWave = abrLeftLWave; - - } - - public String getAbrLeftLllWave() { - return abrLeftLllWave; - } - - - public void setAbrLeftLllWave(String abrLeftLllWave) { - this.abrLeftLllWave = abrLeftLllWave; - - } - - public String getAbrLeftVWave() { - return abrLeftVWave; - } - - - public void setAbrLeftVWave(String abrLeftVWave) { - this.abrLeftVWave = abrLeftVWave; - - } - - public String getAbrLeftShield() { - return abrLeftShield; - } - - - public void setAbrLeftShield(String abrLeftShield) { - this.abrLeftShield = abrLeftShield; - - } - - public String getAbrRightDbnhl() { - return abrRightDbnhl; - } - - - public void setAbrRightDbnhl(String abrRightDbnhl) { - this.abrRightDbnhl = abrRightDbnhl; - - } - - public String getAbrRightLWave() { - return abrRightLWave; - } - - - public void setAbrRightLWave(String abrRightLWave) { - this.abrRightLWave = abrRightLWave; - - } - - public String getAbrRightLllWave() { - return abrRightLllWave; - } - - - public void setAbrRightLllWave(String abrRightLllWave) { - this.abrRightLllWave = abrRightLllWave; - - } - - public String getAbrRightVWave() { - return abrRightVWave; - } - - - public void setAbrRightVWave(String abrRightVWave) { - this.abrRightVWave = abrRightVWave; - - } - - public String getAbrRightShield() { - return abrRightShield; - } - - - public void setAbrRightShield(String abrRightShield) { - this.abrRightShield = abrRightShield; - - } - - public String getAbrThrLeftDbnhl() { - return abrThrLeftDbnhl; - } - - - public void setAbrThrLeftDbnhl(String abrThrLeftDbnhl) { - this.abrThrLeftDbnhl = abrThrLeftDbnhl; - - } - - public String getAbrThrLeftMs() { - return abrThrLeftMs; - } - - - public void setAbrThrLeftMs(String abrThrLeftMs) { - this.abrThrLeftMs = abrThrLeftMs; - - } - - public String getAbrThrLeftShieldDbnhl() { - return abrThrLeftShieldDbnhl; - } - - - public void setAbrThrLeftShieldDbnhl(String abrThrLeftShieldDbnhl) { - this.abrThrLeftShieldDbnhl = abrThrLeftShieldDbnhl; - - } - - public String getAbrThrRightDbnhl() { - return abrThrRightDbnhl; - } - - - public void setAbrThrRightDbnhl(String abrThrRightDbnhl) { - this.abrThrRightDbnhl = abrThrRightDbnhl; - - } - - public String getAbrThrRightMs() { - return abrThrRightMs; - } - - - public void setAbrThrRightMs(String abrThrRightMs) { - this.abrThrRightMs = abrThrRightMs; - - } - - public String getAbrThrRightShieldDbnhl() { - return abrThrRightShieldDbnhl; - } - - - public void setAbrThrRightShieldDbnhl(String abrThrRightShieldDbnhl) { - this.abrThrRightShieldDbnhl = abrThrRightShieldDbnhl; - - } - - public String getAbrBcLeftThrDbnhl() { - return abrBcLeftThrDbnhl; - } - - - public void setAbrBcLeftThrDbnhl(String abrBcLeftThrDbnhl) { - this.abrBcLeftThrDbnhl = abrBcLeftThrDbnhl; - - } - - public String getAbrBcLeftThrMs() { - return abrBcLeftThrMs; - } - - - public void setAbrBcLeftThrMs(String abrBcLeftThrMs) { - this.abrBcLeftThrMs = abrBcLeftThrMs; - - } - - public String getAbrBcLeftThrShieldDbnhl() { - return abrBcLeftThrShieldDbnhl; - } - - - public void setAbrBcLeftThrShieldDbnhl(String abrBcLeftThrShieldDbnhl) { - this.abrBcLeftThrShieldDbnhl = abrBcLeftThrShieldDbnhl; - - } - - public String getAbrBcRightThrDbnhl() { - return abrBcRightThrDbnhl; - } - - - public void setAbrBcRightThrDbnhl(String abrBcRightThrDbnhl) { - this.abrBcRightThrDbnhl = abrBcRightThrDbnhl; - - } - - public String getAbrBcRightThrMs() { - return abrBcRightThrMs; - } - - - public void setAbrBcRightThrMs(String abrBcRightThrMs) { - this.abrBcRightThrMs = abrBcRightThrMs; - - } - - public String getAbrBcRightThrShieldDbnhl() { - return abrBcRightThrShieldDbnhl; - } - - - public void setAbrBcRightThrShieldDbnhl(String abrBcRightThrShieldDbnhl) { - this.abrBcRightThrShieldDbnhl = abrBcRightThrShieldDbnhl; - - } - - public String getReactionThrLeftDbnhl() { - return reactionThrLeftDbnhl; - } - - - public void setReactionThrLeftDbnhl(String reactionThrLeftDbnhl) { - this.reactionThrLeftDbnhl = reactionThrLeftDbnhl; - - } - - public String getReactionThrLeftShieldDbnhl() { - return reactionThrLeftShieldDbnhl; - } - - - public void setReactionThrLeftShieldDbnhl(String reactionThrLeftShieldDbnhl) { - this.reactionThrLeftShieldDbnhl = reactionThrLeftShieldDbnhl; - - } - - public String getReactionThrRightDbnhl() { - return reactionThrRightDbnhl; - } - - - public void setReactionThrRightDbnhl(String reactionThrRightDbnhl) { - this.reactionThrRightDbnhl = reactionThrRightDbnhl; - - } - - public String getReactionThrRightShieldDbnhl() { - return reactionThrRightShieldDbnhl; - } - - - public void setReactionThrRightShieldDbnhl(String reactionThrRightShieldDbnhl) { - this.reactionThrRightShieldDbnhl = reactionThrRightShieldDbnhl; - - } - - public String getOaeLeft750() { - return oaeLeft750; - } - - - public void setOaeLeft750(String oaeLeft750) { - this.oaeLeft750 = oaeLeft750; - - } - - public String getOaeLeft1k() { - return oaeLeft1k; - } - - - public void setOaeLeft1k(String oaeLeft1k) { - this.oaeLeft1k = oaeLeft1k; - - } - - public String getOaeLeft2k() { - return oaeLeft2k; - } - - - public void setOaeLeft2k(String oaeLeft2k) { - this.oaeLeft2k = oaeLeft2k; - - } - - public String getOaeLeft3k() { - return oaeLeft3k; - } - - - public void setOaeLeft3k(String oaeLeft3k) { - this.oaeLeft3k = oaeLeft3k; - - } - - public String getOaeLeft4k() { - return oaeLeft4k; - } - - - public void setOaeLeft4k(String oaeLeft4k) { - this.oaeLeft4k = oaeLeft4k; - - } - - public String getOaeLeft6k() { - return oaeLeft6k; - } - - - public void setOaeLeft6k(String oaeLeft6k) { - this.oaeLeft6k = oaeLeft6k; - - } - - public String getOaeLeft8k() { - return oaeLeft8k; - } - - - public void setOaeLeft8k(String oaeLeft8k) { - this.oaeLeft8k = oaeLeft8k; - - } - - public String getOaeLeft10k() { - return oaeLeft10k; - } - - - public void setOaeLeft10k(String oaeLeft10k) { - this.oaeLeft10k = oaeLeft10k; - - } - - public String getOaeRight750() { - return oaeRight750; - } - - - public void setOaeRight750(String oaeRight750) { - this.oaeRight750 = oaeRight750; - - } - - public String getOaeRight1k() { - return oaeRight1k; - } - - - public void setOaeRight1k(String oaeRight1k) { - this.oaeRight1k = oaeRight1k; - - } - - public String getOaeRight2k() { - return oaeRight2k; - } - - - public void setOaeRight2k(String oaeRight2k) { - this.oaeRight2k = oaeRight2k; - - } - - public String getOaeRight3k() { - return oaeRight3k; - } - - - public void setOaeRight3k(String oaeRight3k) { - this.oaeRight3k = oaeRight3k; - - } - - public String getOaeRight4k() { - return oaeRight4k; - } - - - public void setOaeRight4k(String oaeRight4k) { - this.oaeRight4k = oaeRight4k; - - } - - public String getOaeRight6k() { - return oaeRight6k; - } - - - public void setOaeRight6k(String oaeRight6k) { - this.oaeRight6k = oaeRight6k; - - } - - public String getOaeRight8k() { - return oaeRight8k; - } - - - public void setOaeRight8k(String oaeRight8k) { - this.oaeRight8k = oaeRight8k; - - } - - public String getOaeRight10k() { - return oaeRight10k; - } - - - public void setOaeRight10k(String oaeRight10k) { - this.oaeRight10k = oaeRight10k; - - } - - public String getAcadLeftCurveType() { - return acadLeftCurveType; - } - - - public void setAcadLeftCurveType(String acadLeftCurveType) { - this.acadLeftCurveType = acadLeftCurveType; - - } - - public String getAcadLeftDrumCp() { - return acadLeftDrumCp; - } - - - public void setAcadLeftDrumCp(String acadLeftDrumCp) { - this.acadLeftDrumCp = acadLeftDrumCp; - - } - - public String getAcadLeftAcco() { - return acadLeftAcco; - } - - - public void setAcadLeftAcco(String acadLeftAcco) { - this.acadLeftAcco = acadLeftAcco; - - } - - public String getAcadLeftSecondoVolume() { - return acadLeftSecondoVolume; - } - - - public void setAcadLeftSecondoVolume(String acadLeftSecondoVolume) { - this.acadLeftSecondoVolume = acadLeftSecondoVolume; - - } - - public String getAcadLeftGradient() { - return acadLeftGradient; - } - - - public void setAcadLeftGradient(String acadLeftGradient) { - this.acadLeftGradient = acadLeftGradient; - - } - - public String getAcadLeft1kReflectThre() { - return acadLeft1kReflectThre; - } - - - public void setAcadLeft1kReflectThre(String acadLeft1kReflectThre) { - this.acadLeft1kReflectThre = acadLeft1kReflectThre; - - } - - public String getAcadRightCurveType() { - return acadRightCurveType; - } - - - public void setAcadRightCurveType(String acadRightCurveType) { - this.acadRightCurveType = acadRightCurveType; - - } - - public String getAcadRightDrumCp() { - return acadRightDrumCp; - } - - - public void setAcadRightDrumCp(String acadRightDrumCp) { - this.acadRightDrumCp = acadRightDrumCp; - - } - - public String getAcadRightAcco() { - return acadRightAcco; - } - - - public void setAcadRightAcco(String acadRightAcco) { - this.acadRightAcco = acadRightAcco; - - } - - public String getAcadRightSecondoVolume() { - return acadRightSecondoVolume; - } - - - public void setAcadRightSecondoVolume(String acadRightSecondoVolume) { - this.acadRightSecondoVolume = acadRightSecondoVolume; - - } - - public String getAcadRightGradient() { - return acadRightGradient; - } - - - public void setAcadRightGradient(String acadRightGradient) { - this.acadRightGradient = acadRightGradient; - - } - - public String getAcadRight1kReflectThre() { - return acadRight1kReflectThre; - } - - - public void setAcadRight1kReflectThre(String acadRight1kReflectThre) { - this.acadRight1kReflectThre = acadRight1kReflectThre; - - } - - public String getSoundReflLeftIpsi500() { - return soundReflLeftIpsi500; - } - - - public void setSoundReflLeftIpsi500(String soundReflLeftIpsi500) { - this.soundReflLeftIpsi500 = soundReflLeftIpsi500; - - } - - public String getSoundReflLeftIpsi1k() { - return soundReflLeftIpsi1k; - } - - - public void setSoundReflLeftIpsi1k(String soundReflLeftIpsi1k) { - this.soundReflLeftIpsi1k = soundReflLeftIpsi1k; - - } - - public String getSoundReflLeftIpsi2k() { - return soundReflLeftIpsi2k; - } - - - public void setSoundReflLeftIpsi2k(String soundReflLeftIpsi2k) { - this.soundReflLeftIpsi2k = soundReflLeftIpsi2k; - - } - - public String getSoundReflLeftIpsi4k() { - return soundReflLeftIpsi4k; - } - - - public void setSoundReflLeftIpsi4k(String soundReflLeftIpsi4k) { - this.soundReflLeftIpsi4k = soundReflLeftIpsi4k; - - } - - public String getSoundReflLeftOffsi500() { - return soundReflLeftOffsi500; - } - - - public void setSoundReflLeftOffsi500(String soundReflLeftOffsi500) { - this.soundReflLeftOffsi500 = soundReflLeftOffsi500; - - } - - public String getSoundReflLeftOffsi1k() { - return soundReflLeftOffsi1k; - } - - - public void setSoundReflLeftOffsi1k(String soundReflLeftOffsi1k) { - this.soundReflLeftOffsi1k = soundReflLeftOffsi1k; - - } - - public String getSoundReflLeftOffsi2k() { - return soundReflLeftOffsi2k; - } - - - public void setSoundReflLeftOffsi2k(String soundReflLeftOffsi2k) { - this.soundReflLeftOffsi2k = soundReflLeftOffsi2k; - - } - - public String getSoundReflLeftOffsi4k() { - return soundReflLeftOffsi4k; - } - - - public void setSoundReflLeftOffsi4k(String soundReflLeftOffsi4k) { - this.soundReflLeftOffsi4k = soundReflLeftOffsi4k; - - } - - public String getSoundReflLeftAtten() { - return soundReflLeftAtten; - } - - - public void setSoundReflLeftAtten(String soundReflLeftAtten) { - this.soundReflLeftAtten = soundReflLeftAtten; - - } - - public String getSoundReflRightIpsi500() { - return soundReflRightIpsi500; - } - - - public void setSoundReflRightIpsi500(String soundReflRightIpsi500) { - this.soundReflRightIpsi500 = soundReflRightIpsi500; - - } - - public String getSoundReflRightIpsi1k() { - return soundReflRightIpsi1k; - } - - - public void setSoundReflRightIpsi1k(String soundReflRightIpsi1k) { - this.soundReflRightIpsi1k = soundReflRightIpsi1k; - - } - - public String getSoundReflRightIpsi2k() { - return soundReflRightIpsi2k; - } - - - public void setSoundReflRightIpsi2k(String soundReflRightIpsi2k) { - this.soundReflRightIpsi2k = soundReflRightIpsi2k; - - } - - public String getSoundReflRightIpsi4k() { - return soundReflRightIpsi4k; - } - - - public void setSoundReflRightIpsi4k(String soundReflRightIpsi4k) { - this.soundReflRightIpsi4k = soundReflRightIpsi4k; - - } - - public String getSoundReflRightOffsi500() { - return soundReflRightOffsi500; - } - - - public void setSoundReflRightOffsi500(String soundReflRightOffsi500) { - this.soundReflRightOffsi500 = soundReflRightOffsi500; - - } - - public String getSoundReflRightOffsi1k() { - return soundReflRightOffsi1k; - } - - - public void setSoundReflRightOffsi1k(String soundReflRightOffsi1k) { - this.soundReflRightOffsi1k = soundReflRightOffsi1k; - - } - - public String getSoundReflRightOffsi2k() { - return soundReflRightOffsi2k; - } - - - public void setSoundReflRightOffsi2k(String soundReflRightOffsi2k) { - this.soundReflRightOffsi2k = soundReflRightOffsi2k; - - } - - public String getSoundReflRightOffsi4k() { - return soundReflRightOffsi4k; - } - - - public void setSoundReflRightOffsi4k(String soundReflRightOffsi4k) { - this.soundReflRightOffsi4k = soundReflRightOffsi4k; - - } - - public String getSoundReflRightAtten() { - return soundReflRightAtten; - } - - - public void setSoundReflRightAtten(String soundReflRightAtten) { - this.soundReflRightAtten = soundReflRightAtten; - - } - - public Integer getAabrLeftIfPass() { - return aabrLeftIfPass; - } - - - public void setAabrLeftIfPass(Integer aabrLeftIfPass) { - this.aabrLeftIfPass = aabrLeftIfPass; - - } - - public Integer getAabrRightIfPass() { - return aabrRightIfPass; - } - - - public void setAabrRightIfPass(Integer aabrRightIfPass) { - this.aabrRightIfPass = aabrRightIfPass; - - } - - public String getAssrLeft500() { - return assrLeft500; - } - - - public void setAssrLeft500(String assrLeft500) { - this.assrLeft500 = assrLeft500; - - } - - public String getAssrLeft1k() { - return assrLeft1k; - } - - - public void setAssrLeft1k(String assrLeft1k) { - this.assrLeft1k = assrLeft1k; - - } - - public String getAssrLeft2k() { - return assrLeft2k; - } - - - public void setAssrLeft2k(String assrLeft2k) { - this.assrLeft2k = assrLeft2k; - - } - - public String getAssrLeft4k() { - return assrLeft4k; - } - - - public void setAssrLeft4k(String assrLeft4k) { - this.assrLeft4k = assrLeft4k; - - } - - public String getAssrRight500() { - return assrRight500; - } - - - public void setAssrRight500(String assrRight500) { - this.assrRight500 = assrRight500; - - } - - public String getAssrRight1k() { - return assrRight1k; - } - - - public void setAssrRight1k(String assrRight1k) { - this.assrRight1k = assrRight1k; - - } - - public String getAssrRight2k() { - return assrRight2k; - } - - - public void setAssrRight2k(String assrRight2k) { - this.assrRight2k = assrRight2k; - - } - - public String getAssrRight4k() { - return assrRight4k; - } - - - public void setAssrRight4k(String assrRight4k) { - this.assrRight4k = assrRight4k; - - } - - public String getDiagnHandSugge() { - return diagnHandSugge; - } - - - public void setDiagnHandSugge(String diagnHandSugge) { - this.diagnHandSugge = diagnHandSugge; - - } - - public String getDiagnGuideSugge() { - return diagnGuideSugge; - } - - - public void setDiagnGuideSugge(String diagnGuideSugge) { - this.diagnGuideSugge = diagnGuideSugge; - - } - - public String getDiagnDoctorId() { - return diagnDoctorId; - } - - - public void setDiagnDoctorId(String diagnDoctorId) { - this.diagnDoctorId = diagnDoctorId; - - } - - public Date getDiagnNextTime() { - return diagnNextTime; - } - - - public void setDiagnNextTime(Date diagnNextTime) { - this.diagnNextTime = diagnNextTime; - - } - - public Date getCreateTime() { - return createTime; - } - - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - - } - - public String getCreateId() { - return createId; - } - - - public void setCreateId(String createId) { - this.createId = createId; - - } - - public String getModifyId() { - return modifyId; - } - - - public void setModifyId(String modifyId) { - this.modifyId = modifyId; - - } - - public Date getModifyTime() { - return modifyTime; - } - - - public void setModifyTime(Date modifyTime) { - this.modifyTime = modifyTime; - - } - - public Integer getIfdel() { - return ifdel; - } - - - public void setIfdel(Integer ifdel) { - this.ifdel = ifdel; - - } - - public Integer getEnalble() { - return enalble; - } - - - public void setEnalble(Integer enalble) { - this.enalble = enalble; - - } -} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/HearingDiagnoseQuery.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/model/HearingDiagnoseQuery.java deleted file mode 100644 index bb6c911..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/model/HearingDiagnoseQuery.java +++ /dev/null @@ -1,1366 +0,0 @@ -package com.lyms.platform.permission.model; - - -import com.lyms.platform.common.dao.BaseQuery; - -import java.util.Date; - - -public class HearingDiagnoseQuery extends BaseQuery { - /** - * 主键 - */ - private String id; - /** - * 儿童档案ID - */ - private String babyId; - /** - * 检测医院ID - */ - private String hospitalId; - /** - * 诊断时间 - */ - private Date diagnoseTime; - /** - * 高危因素 - */ - private String highFactor; - /** - * ABR潜伏期左耳dBnHL - */ - private String abrLeftDbnhl; - /** - * ABR潜伏期左耳I波 - */ - private String abrLeftLWave; - /** - * ABR潜伏期左耳III波 - */ - private String abrLeftLllWave; - /** - * ABR潜伏期左耳V波 - */ - private String abrLeftVWave; - /** - * ABR潜伏期左耳对策掩蔽强度 - */ - private String abrLeftShield; - /** - * ABR潜伏期右耳dBnHL - */ - private String abrRightDbnhl; - /** - * ABR潜伏期右耳I波 - */ - private String abrRightLWave; - /** - * ABR潜伏期右耳III波 - */ - private String abrRightLllWave; - /** - * ABR潜伏期右耳V波 - */ - private String abrRightVWave; - /** - * ABR潜伏期右耳对策掩蔽强度 - */ - private String abrRightShield; - /** - * ABR阈值左耳DbnHL - */ - private String abrThrLeftDbnhl; - /** - * ABR阈值左耳MS - */ - private String abrThrLeftMs; - /** - * ABR阈值左耳对侧掩蔽强度dBnHl - */ - private String abrThrLeftShieldDbnhl; - /** - * ABR阈值右耳DbnHL - */ - private String abrThrRightDbnhl; - /** - * ABR阈值右耳MS - */ - private String abrThrRightMs; - /** - * ABR阈值右耳对侧掩蔽强度dBnHl - */ - private String abrThrRightShieldDbnhl; - /** - * ABR骨导阀值左耳dBnHL - */ - private String abrBcLeftThrDbnhl; - /** - * ABR骨导阀值左耳ms - */ - private String abrBcLeftThrMs; - /** - * ABR骨导阀值左耳对侧掩蔽强度dBnHL - */ - private String abrBcLeftThrShieldDbnhl; - /** - * ABR骨导阀值右耳dBnHL - */ - private String abrBcRightThrDbnhl; - /** - * ABR骨导阀值右耳ms - */ - private String abrBcRightThrMs; - /** - * ABR骨导阀值右耳对侧掩蔽强度dBnHL - */ - private String abrBcRightThrShieldDbnhl; - /** - * 反应阀值左耳dBnHL - */ - private String reactionThrLeftDbnhl; - /** - * 反应阀值左耳对侧屏蔽强度dBnHL - */ - private String reactionThrLeftShieldDbnhl; - /** - * 反应阀值右耳dBnHL - */ - private String reactionThrRightDbnhl; - /** - * 反应阀值右耳对侧掩蔽强度dBnHL - */ - private String reactionThrRightShieldDbnhl; - /** - * 耳声发射左耳750Hz - */ - private String oaeLeft750; - /** - * 耳声发射左耳1KHz - */ - private String oaeLeft1k; - /** - * 耳声发射左耳2KHz - */ - private String oaeLeft2k; - /** - * 耳声发射左耳3KHz - */ - private String oaeLeft3k; - /** - * 耳声发射左耳4KHz - */ - private String oaeLeft4k; - /** - * 耳声发射左耳6KHz - */ - private String oaeLeft6k; - /** - * 耳声发射左耳8KHz - */ - private String oaeLeft8k; - /** - * 耳声发射左耳10KHz - */ - private String oaeLeft10k; - /** - * 耳声发射右耳750Hz - */ - private String oaeRight750; - /** - * 耳声发射右耳1KHz - */ - private String oaeRight1k; - /** - * 耳声发射右耳2KHz - */ - private String oaeRight2k; - /** - * 耳声发射右耳3KHz - */ - private String oaeRight3k; - /** - * 耳声发射右耳4KHz - */ - private String oaeRight4k; - /** - * 耳声发射右耳6KHz - */ - private String oaeRight6k; - /** - * 耳声发射右耳8KHz - */ - private String oaeRight8k; - /** - * 耳声发射右耳10KHz - */ - private String oaeRight10k; - /** - * 声导纳左耳曲线类型 - */ - private String acadLeftCurveType; - /** - * 声导纳左耳鼓室压 - */ - private String acadLeftDrumCp; - /** - * 声导纳左耳声顺 - */ - private String acadLeftAcco; - /** - * 声导纳左耳外耳道容积 - */ - private String acadLeftSecondoVolume; - /** - * 声导纳左耳坡度 - */ - private String acadLeftGradient; - /** - * 声导纳左耳1K声反射阀值 - */ - private String acadLeft1kReflectThre; - /** - * 声导纳右耳曲线类型 - */ - private String acadRightCurveType; - /** - * 声导纳右耳鼓室压 - */ - private String acadRightDrumCp; - /** - * 声导纳右耳声顺 - */ - private String acadRightAcco; - /** - * 声导纳右耳外耳道容积 - */ - private String acadRightSecondoVolume; - /** - * 声导纳右耳坡度 - */ - private String acadRightGradient; - /** - * 声导纳右耳1K声反射阀值 - */ - private String acadRight1kReflectThre; - /** - * 声反射阀值左耳同侧500Hz - */ - private String soundReflLeftIpsi500; - /** - * 声反射阀值左耳同侧1KHz - */ - private String soundReflLeftIpsi1k; - /** - * 声反射阀值左耳同侧2KHz - */ - private String soundReflLeftIpsi2k; - /** - * 声反射阀值左耳同侧4KHz - */ - private String soundReflLeftIpsi4k; - /** - * 声反射阀值左耳对侧500Hz - */ - private String soundReflLeftOffsi500; - /** - * 声反射阀值左耳对侧1KHz - */ - private String soundReflLeftOffsi1k; - /** - * 声反射阀值左耳对侧2KHz - */ - private String soundReflLeftOffsi2k; - /** - * 声反射阀值左耳对侧4KHz - */ - private String soundReflLeftOffsi4k; - /** - * 声反射阀值左耳声反射衰减 - */ - private String soundReflLeftAtten; - /** - * 声反射阀值右耳同侧500Hz - */ - private String soundReflRightIpsi500; - /** - * 声反射阀值右耳同侧1KHz - */ - private String soundReflRightIpsi1k; - /** - * 声反射阀值右耳同侧2KHz - */ - private String soundReflRightIpsi2k; - /** - * 声反射阀值右耳同侧4KHz - */ - private String soundReflRightIpsi4k; - /** - * 声反射阀值右耳对侧500Hz - */ - private String soundReflRightOffsi500; - /** - * 声反射阀值右耳对侧1KHz - */ - private String soundReflRightOffsi1k; - /** - * 声反射阀值右耳对侧2KHz - */ - private String soundReflRightOffsi2k; - /** - * 声反射阀值右耳对侧4KHz - */ - private String soundReflRightOffsi4k; - /** - * 声反射阀值右耳声反射衰减 - */ - private String soundReflRightAtten; - /** - * AABR左耳是否通过 - */ - private Integer aabrLeftIfPass; - /** - * AABR右耳是否通过 - */ - private Integer aabrRightIfPass; - /** - * ASSR左耳500Hz - */ - private String assrLeft500; - /** - * ASSR左耳1KHz - */ - private String assrLeft1k; - /** - * ASSR左耳2KHz - */ - private String assrLeft2k; - /** - * ASSR左耳4KHz - */ - private String assrLeft4k; - /** - * ASSR右耳500Hz - */ - private String assrRight500; - /** - * ASSR右耳1KHz - */ - private String assrRight1k; - /** - * ASSR右耳2KHz - */ - private String assrRight2k; - /** - * ASSR右耳4KHz - */ - private String assrRight4k; - /** - * 诊断指导处理意见 - */ - private String diagnHandSugge; - /** - * 诊断指导指导意见 - */ - private String diagnGuideSugge; - /** - * 诊断指导诊断医生 - */ - private String diagnDoctorId; - /** - * 诊断指导预约下次诊断时间 - */ - private Date diagnNextTime; - /** - * 创建时间 - */ - private Date createTime; - /** - * 创建ID - */ - private String createId; - /** - * 修改人id - */ - private String modifyId; - /** - * 修改时间 - */ - private Date modifyTime; - /** - * 是否删除 - */ - private Integer ifdel; - /** - * 状态 - */ - private Integer enalble; - - public String getId() { - return id; - } - - - public void setId(String id) { - this.id = id; - - } - - public String getBabyId() { - return babyId; - } - - public void setBabyId(String babyId) { - this.babyId = babyId; - } - - public String getHospitalId() { - return hospitalId; - } - - - public void setHospitalId(String hospitalId) { - this.hospitalId = hospitalId; - - } - - public Date getDiagnoseTime() { - return diagnoseTime; - } - - - public void setDiagnoseTime(Date diagnoseTime) { - this.diagnoseTime = diagnoseTime; - - } - - public String getHighFactor() { - return highFactor; - } - - - public void setHighFactor(String highFactor) { - this.highFactor = highFactor; - - } - - public String getAbrLeftDbnhl() { - return abrLeftDbnhl; - } - - - public void setAbrLeftDbnhl(String abrLeftDbnhl) { - this.abrLeftDbnhl = abrLeftDbnhl; - - } - - public String getAbrLeftLWave() { - return abrLeftLWave; - } - - - public void setAbrLeftLWave(String abrLeftLWave) { - this.abrLeftLWave = abrLeftLWave; - - } - - public String getAbrLeftLllWave() { - return abrLeftLllWave; - } - - - public void setAbrLeftLllWave(String abrLeftLllWave) { - this.abrLeftLllWave = abrLeftLllWave; - - } - - public String getAbrLeftVWave() { - return abrLeftVWave; - } - - - public void setAbrLeftVWave(String abrLeftVWave) { - this.abrLeftVWave = abrLeftVWave; - - } - - public String getAbrLeftShield() { - return abrLeftShield; - } - - - public void setAbrLeftShield(String abrLeftShield) { - this.abrLeftShield = abrLeftShield; - - } - - public String getAbrRightDbnhl() { - return abrRightDbnhl; - } - - - public void setAbrRightDbnhl(String abrRightDbnhl) { - this.abrRightDbnhl = abrRightDbnhl; - - } - - public String getAbrRightLWave() { - return abrRightLWave; - } - - - public void setAbrRightLWave(String abrRightLWave) { - this.abrRightLWave = abrRightLWave; - - } - - public String getAbrRightLllWave() { - return abrRightLllWave; - } - - - public void setAbrRightLllWave(String abrRightLllWave) { - this.abrRightLllWave = abrRightLllWave; - - } - - public String getAbrRightVWave() { - return abrRightVWave; - } - - - public void setAbrRightVWave(String abrRightVWave) { - this.abrRightVWave = abrRightVWave; - - } - - public String getAbrRightShield() { - return abrRightShield; - } - - - public void setAbrRightShield(String abrRightShield) { - this.abrRightShield = abrRightShield; - - } - - public String getAbrThrLeftDbnhl() { - return abrThrLeftDbnhl; - } - - - public void setAbrThrLeftDbnhl(String abrThrLeftDbnhl) { - this.abrThrLeftDbnhl = abrThrLeftDbnhl; - - } - - public String getAbrThrLeftMs() { - return abrThrLeftMs; - } - - - public void setAbrThrLeftMs(String abrThrLeftMs) { - this.abrThrLeftMs = abrThrLeftMs; - - } - - public String getAbrThrLeftShieldDbnhl() { - return abrThrLeftShieldDbnhl; - } - - - public void setAbrThrLeftShieldDbnhl(String abrThrLeftShieldDbnhl) { - this.abrThrLeftShieldDbnhl = abrThrLeftShieldDbnhl; - - } - - public String getAbrThrRightDbnhl() { - return abrThrRightDbnhl; - } - - - public void setAbrThrRightDbnhl(String abrThrRightDbnhl) { - this.abrThrRightDbnhl = abrThrRightDbnhl; - - } - - public String getAbrThrRightMs() { - return abrThrRightMs; - } - - - public void setAbrThrRightMs(String abrThrRightMs) { - this.abrThrRightMs = abrThrRightMs; - - } - - public String getAbrThrRightShieldDbnhl() { - return abrThrRightShieldDbnhl; - } - - - public void setAbrThrRightShieldDbnhl(String abrThrRightShieldDbnhl) { - this.abrThrRightShieldDbnhl = abrThrRightShieldDbnhl; - - } - - public String getAbrBcLeftThrDbnhl() { - return abrBcLeftThrDbnhl; - } - - - public void setAbrBcLeftThrDbnhl(String abrBcLeftThrDbnhl) { - this.abrBcLeftThrDbnhl = abrBcLeftThrDbnhl; - - } - - public String getAbrBcLeftThrMs() { - return abrBcLeftThrMs; - } - - - public void setAbrBcLeftThrMs(String abrBcLeftThrMs) { - this.abrBcLeftThrMs = abrBcLeftThrMs; - - } - - public String getAbrBcLeftThrShieldDbnhl() { - return abrBcLeftThrShieldDbnhl; - } - - - public void setAbrBcLeftThrShieldDbnhl(String abrBcLeftThrShieldDbnhl) { - this.abrBcLeftThrShieldDbnhl = abrBcLeftThrShieldDbnhl; - - } - - public String getAbrBcRightThrDbnhl() { - return abrBcRightThrDbnhl; - } - - - public void setAbrBcRightThrDbnhl(String abrBcRightThrDbnhl) { - this.abrBcRightThrDbnhl = abrBcRightThrDbnhl; - - } - - public String getAbrBcRightThrMs() { - return abrBcRightThrMs; - } - - - public void setAbrBcRightThrMs(String abrBcRightThrMs) { - this.abrBcRightThrMs = abrBcRightThrMs; - - } - - public String getAbrBcRightThrShieldDbnhl() { - return abrBcRightThrShieldDbnhl; - } - - - public void setAbrBcRightThrShieldDbnhl(String abrBcRightThrShieldDbnhl) { - this.abrBcRightThrShieldDbnhl = abrBcRightThrShieldDbnhl; - - } - - public String getReactionThrLeftDbnhl() { - return reactionThrLeftDbnhl; - } - - - public void setReactionThrLeftDbnhl(String reactionThrLeftDbnhl) { - this.reactionThrLeftDbnhl = reactionThrLeftDbnhl; - - } - - public String getReactionThrLeftShieldDbnhl() { - return reactionThrLeftShieldDbnhl; - } - - - public void setReactionThrLeftShieldDbnhl(String reactionThrLeftShieldDbnhl) { - this.reactionThrLeftShieldDbnhl = reactionThrLeftShieldDbnhl; - - } - - public String getReactionThrRightDbnhl() { - return reactionThrRightDbnhl; - } - - - public void setReactionThrRightDbnhl(String reactionThrRightDbnhl) { - this.reactionThrRightDbnhl = reactionThrRightDbnhl; - - } - - public String getReactionThrRightShieldDbnhl() { - return reactionThrRightShieldDbnhl; - } - - - public void setReactionThrRightShieldDbnhl(String reactionThrRightShieldDbnhl) { - this.reactionThrRightShieldDbnhl = reactionThrRightShieldDbnhl; - - } - - public String getOaeLeft750() { - return oaeLeft750; - } - - - public void setOaeLeft750(String oaeLeft750) { - this.oaeLeft750 = oaeLeft750; - - } - - public String getOaeLeft1k() { - return oaeLeft1k; - } - - - public void setOaeLeft1k(String oaeLeft1k) { - this.oaeLeft1k = oaeLeft1k; - - } - - public String getOaeLeft2k() { - return oaeLeft2k; - } - - - public void setOaeLeft2k(String oaeLeft2k) { - this.oaeLeft2k = oaeLeft2k; - - } - - public String getOaeLeft3k() { - return oaeLeft3k; - } - - - public void setOaeLeft3k(String oaeLeft3k) { - this.oaeLeft3k = oaeLeft3k; - - } - - public String getOaeLeft4k() { - return oaeLeft4k; - } - - - public void setOaeLeft4k(String oaeLeft4k) { - this.oaeLeft4k = oaeLeft4k; - - } - - public String getOaeLeft6k() { - return oaeLeft6k; - } - - - public void setOaeLeft6k(String oaeLeft6k) { - this.oaeLeft6k = oaeLeft6k; - - } - - public String getOaeLeft8k() { - return oaeLeft8k; - } - - - public void setOaeLeft8k(String oaeLeft8k) { - this.oaeLeft8k = oaeLeft8k; - - } - - public String getOaeLeft10k() { - return oaeLeft10k; - } - - - public void setOaeLeft10k(String oaeLeft10k) { - this.oaeLeft10k = oaeLeft10k; - - } - - public String getOaeRight750() { - return oaeRight750; - } - - - public void setOaeRight750(String oaeRight750) { - this.oaeRight750 = oaeRight750; - - } - - public String getOaeRight1k() { - return oaeRight1k; - } - - - public void setOaeRight1k(String oaeRight1k) { - this.oaeRight1k = oaeRight1k; - - } - - public String getOaeRight2k() { - return oaeRight2k; - } - - - public void setOaeRight2k(String oaeRight2k) { - this.oaeRight2k = oaeRight2k; - - } - - public String getOaeRight3k() { - return oaeRight3k; - } - - - public void setOaeRight3k(String oaeRight3k) { - this.oaeRight3k = oaeRight3k; - - } - - public String getOaeRight4k() { - return oaeRight4k; - } - - - public void setOaeRight4k(String oaeRight4k) { - this.oaeRight4k = oaeRight4k; - - } - - public String getOaeRight6k() { - return oaeRight6k; - } - - - public void setOaeRight6k(String oaeRight6k) { - this.oaeRight6k = oaeRight6k; - - } - - public String getOaeRight8k() { - return oaeRight8k; - } - - - public void setOaeRight8k(String oaeRight8k) { - this.oaeRight8k = oaeRight8k; - - } - - public String getOaeRight10k() { - return oaeRight10k; - } - - - public void setOaeRight10k(String oaeRight10k) { - this.oaeRight10k = oaeRight10k; - - } - - public String getAcadLeftCurveType() { - return acadLeftCurveType; - } - - - public void setAcadLeftCurveType(String acadLeftCurveType) { - this.acadLeftCurveType = acadLeftCurveType; - - } - - public String getAcadLeftDrumCp() { - return acadLeftDrumCp; - } - - - public void setAcadLeftDrumCp(String acadLeftDrumCp) { - this.acadLeftDrumCp = acadLeftDrumCp; - - } - - public String getAcadLeftAcco() { - return acadLeftAcco; - } - - - public void setAcadLeftAcco(String acadLeftAcco) { - this.acadLeftAcco = acadLeftAcco; - - } - - public String getAcadLeftSecondoVolume() { - return acadLeftSecondoVolume; - } - - - public void setAcadLeftSecondoVolume(String acadLeftSecondoVolume) { - this.acadLeftSecondoVolume = acadLeftSecondoVolume; - - } - - public String getAcadLeftGradient() { - return acadLeftGradient; - } - - - public void setAcadLeftGradient(String acadLeftGradient) { - this.acadLeftGradient = acadLeftGradient; - - } - - public String getAcadLeft1kReflectThre() { - return acadLeft1kReflectThre; - } - - - public void setAcadLeft1kReflectThre(String acadLeft1kReflectThre) { - this.acadLeft1kReflectThre = acadLeft1kReflectThre; - - } - - public String getAcadRightCurveType() { - return acadRightCurveType; - } - - - public void setAcadRightCurveType(String acadRightCurveType) { - this.acadRightCurveType = acadRightCurveType; - - } - - public String getAcadRightDrumCp() { - return acadRightDrumCp; - } - - - public void setAcadRightDrumCp(String acadRightDrumCp) { - this.acadRightDrumCp = acadRightDrumCp; - - } - - public String getAcadRightAcco() { - return acadRightAcco; - } - - - public void setAcadRightAcco(String acadRightAcco) { - this.acadRightAcco = acadRightAcco; - - } - - public String getAcadRightSecondoVolume() { - return acadRightSecondoVolume; - } - - - public void setAcadRightSecondoVolume(String acadRightSecondoVolume) { - this.acadRightSecondoVolume = acadRightSecondoVolume; - - } - - public String getAcadRightGradient() { - return acadRightGradient; - } - - - public void setAcadRightGradient(String acadRightGradient) { - this.acadRightGradient = acadRightGradient; - - } - - public String getAcadRight1kReflectThre() { - return acadRight1kReflectThre; - } - - - public void setAcadRight1kReflectThre(String acadRight1kReflectThre) { - this.acadRight1kReflectThre = acadRight1kReflectThre; - - } - - public String getSoundReflLeftIpsi500() { - return soundReflLeftIpsi500; - } - - - public void setSoundReflLeftIpsi500(String soundReflLeftIpsi500) { - this.soundReflLeftIpsi500 = soundReflLeftIpsi500; - - } - - public String getSoundReflLeftIpsi1k() { - return soundReflLeftIpsi1k; - } - - - public void setSoundReflLeftIpsi1k(String soundReflLeftIpsi1k) { - this.soundReflLeftIpsi1k = soundReflLeftIpsi1k; - - } - - public String getSoundReflLeftIpsi2k() { - return soundReflLeftIpsi2k; - } - - - public void setSoundReflLeftIpsi2k(String soundReflLeftIpsi2k) { - this.soundReflLeftIpsi2k = soundReflLeftIpsi2k; - - } - - public String getSoundReflLeftIpsi4k() { - return soundReflLeftIpsi4k; - } - - - public void setSoundReflLeftIpsi4k(String soundReflLeftIpsi4k) { - this.soundReflLeftIpsi4k = soundReflLeftIpsi4k; - - } - - public String getSoundReflLeftOffsi500() { - return soundReflLeftOffsi500; - } - - - public void setSoundReflLeftOffsi500(String soundReflLeftOffsi500) { - this.soundReflLeftOffsi500 = soundReflLeftOffsi500; - - } - - public String getSoundReflLeftOffsi1k() { - return soundReflLeftOffsi1k; - } - - - public void setSoundReflLeftOffsi1k(String soundReflLeftOffsi1k) { - this.soundReflLeftOffsi1k = soundReflLeftOffsi1k; - - } - - public String getSoundReflLeftOffsi2k() { - return soundReflLeftOffsi2k; - } - - - public void setSoundReflLeftOffsi2k(String soundReflLeftOffsi2k) { - this.soundReflLeftOffsi2k = soundReflLeftOffsi2k; - - } - - public String getSoundReflLeftOffsi4k() { - return soundReflLeftOffsi4k; - } - - - public void setSoundReflLeftOffsi4k(String soundReflLeftOffsi4k) { - this.soundReflLeftOffsi4k = soundReflLeftOffsi4k; - - } - - public String getSoundReflLeftAtten() { - return soundReflLeftAtten; - } - - - public void setSoundReflLeftAtten(String soundReflLeftAtten) { - this.soundReflLeftAtten = soundReflLeftAtten; - - } - - public String getSoundReflRightIpsi500() { - return soundReflRightIpsi500; - } - - - public void setSoundReflRightIpsi500(String soundReflRightIpsi500) { - this.soundReflRightIpsi500 = soundReflRightIpsi500; - - } - - public String getSoundReflRightIpsi1k() { - return soundReflRightIpsi1k; - } - - - public void setSoundReflRightIpsi1k(String soundReflRightIpsi1k) { - this.soundReflRightIpsi1k = soundReflRightIpsi1k; - - } - - public String getSoundReflRightIpsi2k() { - return soundReflRightIpsi2k; - } - - - public void setSoundReflRightIpsi2k(String soundReflRightIpsi2k) { - this.soundReflRightIpsi2k = soundReflRightIpsi2k; - - } - - public String getSoundReflRightIpsi4k() { - return soundReflRightIpsi4k; - } - - - public void setSoundReflRightIpsi4k(String soundReflRightIpsi4k) { - this.soundReflRightIpsi4k = soundReflRightIpsi4k; - - } - - public String getSoundReflRightOffsi500() { - return soundReflRightOffsi500; - } - - - public void setSoundReflRightOffsi500(String soundReflRightOffsi500) { - this.soundReflRightOffsi500 = soundReflRightOffsi500; - - } - - public String getSoundReflRightOffsi1k() { - return soundReflRightOffsi1k; - } - - - public void setSoundReflRightOffsi1k(String soundReflRightOffsi1k) { - this.soundReflRightOffsi1k = soundReflRightOffsi1k; - - } - - public String getSoundReflRightOffsi2k() { - return soundReflRightOffsi2k; - } - - - public void setSoundReflRightOffsi2k(String soundReflRightOffsi2k) { - this.soundReflRightOffsi2k = soundReflRightOffsi2k; - - } - - public String getSoundReflRightOffsi4k() { - return soundReflRightOffsi4k; - } - - - public void setSoundReflRightOffsi4k(String soundReflRightOffsi4k) { - this.soundReflRightOffsi4k = soundReflRightOffsi4k; - - } - - public String getSoundReflRightAtten() { - return soundReflRightAtten; - } - - - public void setSoundReflRightAtten(String soundReflRightAtten) { - this.soundReflRightAtten = soundReflRightAtten; - - } - - public Integer getAabrLeftIfPass() { - return aabrLeftIfPass; - } - - - public void setAabrLeftIfPass(Integer aabrLeftIfPass) { - this.aabrLeftIfPass = aabrLeftIfPass; - - } - - public Integer getAabrRightIfPass() { - return aabrRightIfPass; - } - - - public void setAabrRightIfPass(Integer aabrRightIfPass) { - this.aabrRightIfPass = aabrRightIfPass; - - } - - public String getAssrLeft500() { - return assrLeft500; - } - - - public void setAssrLeft500(String assrLeft500) { - this.assrLeft500 = assrLeft500; - - } - - public String getAssrLeft1k() { - return assrLeft1k; - } - - - public void setAssrLeft1k(String assrLeft1k) { - this.assrLeft1k = assrLeft1k; - - } - - public String getAssrLeft2k() { - return assrLeft2k; - } - - - public void setAssrLeft2k(String assrLeft2k) { - this.assrLeft2k = assrLeft2k; - - } - - public String getAssrLeft4k() { - return assrLeft4k; - } - - - public void setAssrLeft4k(String assrLeft4k) { - this.assrLeft4k = assrLeft4k; - - } - - public String getAssrRight500() { - return assrRight500; - } - - - public void setAssrRight500(String assrRight500) { - this.assrRight500 = assrRight500; - - } - - public String getAssrRight1k() { - return assrRight1k; - } - - - public void setAssrRight1k(String assrRight1k) { - this.assrRight1k = assrRight1k; - - } - - public String getAssrRight2k() { - return assrRight2k; - } - - - public void setAssrRight2k(String assrRight2k) { - this.assrRight2k = assrRight2k; - - } - - public String getAssrRight4k() { - return assrRight4k; - } - - - public void setAssrRight4k(String assrRight4k) { - this.assrRight4k = assrRight4k; - - } - - public String getDiagnHandSugge() { - return diagnHandSugge; - } - - - public void setDiagnHandSugge(String diagnHandSugge) { - this.diagnHandSugge = diagnHandSugge; - - } - - public String getDiagnGuideSugge() { - return diagnGuideSugge; - } - - - public void setDiagnGuideSugge(String diagnGuideSugge) { - this.diagnGuideSugge = diagnGuideSugge; - - } - - public String getDiagnDoctorId() { - return diagnDoctorId; - } - - - public void setDiagnDoctorId(String diagnDoctorId) { - this.diagnDoctorId = diagnDoctorId; - - } - - public Date getDiagnNextTime() { - return diagnNextTime; - } - - - public void setDiagnNextTime(Date diagnNextTime) { - this.diagnNextTime = diagnNextTime; - - } - - public Date getCreateTime() { - return createTime; - } - - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - - } - - public String getCreateId() { - return createId; - } - - - public void setCreateId(String createId) { - this.createId = createId; - - } - - public String getModifyId() { - return modifyId; - } - - - public void setModifyId(String modifyId) { - this.modifyId = modifyId; - - } - - public Date getModifyTime() { - return modifyTime; - } - - - public void setModifyTime(Date modifyTime) { - this.modifyTime = modifyTime; - - } - - public Integer getIfdel() { - return ifdel; - } - - - public void setIfdel(Integer ifdel) { - this.ifdel = ifdel; - - } - - public Integer getEnalble() { - return enalble; - } - - - public void setEnalble(Integer enalble) { - this.enalble = enalble; - - } -} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/BabyPatientExtendEarFollowUpService.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/BabyPatientExtendEarFollowUpService.java new file mode 100644 index 0000000..d5e394a --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/BabyPatientExtendEarFollowUpService.java @@ -0,0 +1,21 @@ +package com.lyms.platform.permission.service; + +import com.lyms.platform.permission.model.BabyPatientExtendEarFollowUp; +import com.lyms.platform.permission.model.BabyPatientExtendEarFollowUpQuery; + +import java.util.List; + +public interface BabyPatientExtendEarFollowUpService { + public void addBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUp obj); + + public void updateBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUp obj); + + public void deleteBabyPatientExtendEarFollowUp(String id); + + public BabyPatientExtendEarFollowUp getBabyPatientExtendEarFollowUp(String id); + + public int queryBabyPatientExtendEarFollowUpCount(BabyPatientExtendEarFollowUpQuery query); + + public List queryBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUpQuery query); + +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/BabyPatientExtendEarHearingDiagnoseService.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/BabyPatientExtendEarHearingDiagnoseService.java new file mode 100644 index 0000000..cf5787a --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/BabyPatientExtendEarHearingDiagnoseService.java @@ -0,0 +1,21 @@ +package com.lyms.platform.permission.service; + +import com.lyms.platform.permission.model.BabyPatientExtendEarHearingDiagnose; +import com.lyms.platform.permission.model.BabyPatientExtendEarHearingDiagnoseQuery; + +import java.util.List; + +public interface BabyPatientExtendEarHearingDiagnoseService { + public void addBabyPatientExtendEarHearingDiagnose(BabyPatientExtendEarHearingDiagnose obj); + + public void updateBabyPatientExtendEarHearingDiagnose(BabyPatientExtendEarHearingDiagnose obj); + + public void deleteBabyPatientExtendEarHearingDiagnose(String id); + + public BabyPatientExtendEarHearingDiagnose getBabyPatientExtendEarHearingDiagnose(String id); + + public int queryBabyPatientExtendEarHearingDiagnoseCount(BabyPatientExtendEarHearingDiagnoseQuery query); + + public List queryBabyPatientExtendEarHearingDiagnose(BabyPatientExtendEarHearingDiagnoseQuery query); + +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/FollowUpService.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/FollowUpService.java deleted file mode 100644 index 03f7d8a..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/FollowUpService.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.lyms.platform.permission.service; - -import com.lyms.platform.permission.model.FollowUp; -import com.lyms.platform.permission.model.FollowUpQuery; - -import java.util.List; - -public interface FollowUpService { - public void addFollowUp(FollowUp obj); - - public void updateFollowUp(FollowUp obj); - - public void deleteFollowUp(String id); - - public FollowUp getFollowUp(String id); - - public int queryFollowUpCount(FollowUpQuery query); - - public List queryFollowUp(FollowUpQuery query); - -} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/HearingDiagnoseService.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/HearingDiagnoseService.java deleted file mode 100644 index 0abec8b..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/HearingDiagnoseService.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.lyms.platform.permission.service; - -import com.lyms.platform.permission.model.HearingDiagnose; -import com.lyms.platform.permission.model.HearingDiagnoseQuery; - -import java.util.List; - -public interface HearingDiagnoseService { - public void addHearingDiagnose(HearingDiagnose obj); - - public void updateHearingDiagnose(HearingDiagnose obj); - - public void deleteHearingDiagnose(String id); - - public HearingDiagnose getHearingDiagnose(String id); - - public int queryHearingDiagnoseCount(HearingDiagnoseQuery query); - - public List queryHearingDiagnose(HearingDiagnoseQuery query); - -} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/BabyPatientExtendEarFollowUpServiceImpl.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/BabyPatientExtendEarFollowUpServiceImpl.java new file mode 100644 index 0000000..4a804a8 --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/BabyPatientExtendEarFollowUpServiceImpl.java @@ -0,0 +1,31 @@ +package com.lyms.platform.permission.service.impl; + +import com.lyms.platform.permission.dao.master.BabyPatientExtendEarFollowUpMapper; +import com.lyms.platform.permission.model.BabyPatientExtendEarFollowUp; +import com.lyms.platform.permission.model.BabyPatientExtendEarFollowUpQuery; +import com.lyms.platform.permission.service.BabyPatientExtendEarFollowUpService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class BabyPatientExtendEarFollowUpServiceImpl implements BabyPatientExtendEarFollowUpService { + +@Autowired +private BabyPatientExtendEarFollowUpMapper babyPatientExtendEarFollowUpMapper; + +@Override +public void addBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUp obj){babyPatientExtendEarFollowUpMapper.addBabyPatientExtendEarFollowUp(obj);} +@Override +public void updateBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUp obj){babyPatientExtendEarFollowUpMapper.updateBabyPatientExtendEarFollowUp(obj);} +@Override +public void deleteBabyPatientExtendEarFollowUp (String id){babyPatientExtendEarFollowUpMapper.deleteBabyPatientExtendEarFollowUp(id);} +@Override +public BabyPatientExtendEarFollowUp getBabyPatientExtendEarFollowUp (String id){return babyPatientExtendEarFollowUpMapper.getBabyPatientExtendEarFollowUp(id);} +@Override +public int queryBabyPatientExtendEarFollowUpCount (BabyPatientExtendEarFollowUpQuery query){return babyPatientExtendEarFollowUpMapper.queryBabyPatientExtendEarFollowUpCount(query);} +@Override +public List queryBabyPatientExtendEarFollowUp (BabyPatientExtendEarFollowUpQuery query){if (query.getNeed() != null) {query.mysqlBuild(babyPatientExtendEarFollowUpMapper.queryBabyPatientExtendEarFollowUpCount(query));}return babyPatientExtendEarFollowUpMapper.queryBabyPatientExtendEarFollowUp(query);} + +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/BabyPatientExtendEarHearingDiagnoseServiceImpl.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/BabyPatientExtendEarHearingDiagnoseServiceImpl.java new file mode 100644 index 0000000..7a5bde5 --- /dev/null +++ b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/BabyPatientExtendEarHearingDiagnoseServiceImpl.java @@ -0,0 +1,30 @@ +package com.lyms.platform.permission.service.impl; +import com.lyms.platform.permission.dao.master.BabyPatientExtendEarHearingDiagnoseMapper; +import com.lyms.platform.permission.model.BabyPatientExtendEarHearingDiagnose; +import com.lyms.platform.permission.model.BabyPatientExtendEarHearingDiagnoseQuery; +import com.lyms.platform.permission.service.BabyPatientExtendEarHearingDiagnoseService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class BabyPatientExtendEarHearingDiagnoseServiceImpl implements BabyPatientExtendEarHearingDiagnoseService { + +@Autowired +private BabyPatientExtendEarHearingDiagnoseMapper babyPatientExtendEarHearingDiagnoseMapper; + +@Override +public void addBabyPatientExtendEarHearingDiagnose(BabyPatientExtendEarHearingDiagnose obj){babyPatientExtendEarHearingDiagnoseMapper.addBabyPatientExtendEarHearingDiagnose(obj);} +@Override +public void updateBabyPatientExtendEarHearingDiagnose(BabyPatientExtendEarHearingDiagnose obj){babyPatientExtendEarHearingDiagnoseMapper.updateBabyPatientExtendEarHearingDiagnose(obj);} +@Override +public void deleteBabyPatientExtendEarHearingDiagnose (String id){babyPatientExtendEarHearingDiagnoseMapper.deleteBabyPatientExtendEarHearingDiagnose(id);} +@Override +public BabyPatientExtendEarHearingDiagnose getBabyPatientExtendEarHearingDiagnose (String id){return babyPatientExtendEarHearingDiagnoseMapper.getBabyPatientExtendEarHearingDiagnose(id);} +@Override +public int queryBabyPatientExtendEarHearingDiagnoseCount (BabyPatientExtendEarHearingDiagnoseQuery query){return babyPatientExtendEarHearingDiagnoseMapper.queryBabyPatientExtendEarHearingDiagnoseCount(query);} +@Override +public List queryBabyPatientExtendEarHearingDiagnose (BabyPatientExtendEarHearingDiagnoseQuery query){if (query.getNeed() != null) {query.mysqlBuild(babyPatientExtendEarHearingDiagnoseMapper.queryBabyPatientExtendEarHearingDiagnoseCount(query));}return babyPatientExtendEarHearingDiagnoseMapper.queryBabyPatientExtendEarHearingDiagnose(query);} + +} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/FollowUpServiceImpl.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/FollowUpServiceImpl.java deleted file mode 100644 index a85bdd9..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/FollowUpServiceImpl.java +++ /dev/null @@ -1,50 +0,0 @@ -package com.lyms.platform.permission.service.impl; - -import com.lyms.platform.permission.dao.master.FollowUpMapper; -import com.lyms.platform.permission.model.FollowUp; -import com.lyms.platform.permission.model.FollowUpQuery; -import com.lyms.platform.permission.service.FollowUpService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import java.util.List; - -@Service -public class FollowUpServiceImpl implements FollowUpService { - - @Autowired - private FollowUpMapper followUpMapper; - - @Override - public void addFollowUp(FollowUp obj) { - followUpMapper.addFollowUp(obj); - } - - @Override - public void updateFollowUp(FollowUp obj) { - followUpMapper.updateFollowUp(obj); - } - - @Override - public void deleteFollowUp(String id) { - followUpMapper.deleteFollowUp(id); - } - - @Override - public FollowUp getFollowUp(String id) { - return followUpMapper.getFollowUp(id); - } - - @Override - public int queryFollowUpCount(FollowUpQuery query) { - return followUpMapper.queryFollowUpCount(query); - } - - @Override - public List queryFollowUp(FollowUpQuery query) { - if (query.getNeed() != null) { - query.mysqlBuild(followUpMapper.queryFollowUpCount(query)); - } - return followUpMapper.queryFollowUp(query); - } -} \ No newline at end of file diff --git a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/HearingDiagnoseServiceImpl.java b/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/HearingDiagnoseServiceImpl.java deleted file mode 100644 index 562337e..0000000 --- a/platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/HearingDiagnoseServiceImpl.java +++ /dev/null @@ -1,51 +0,0 @@ -package com.lyms.platform.permission.service.impl; - -import com.lyms.platform.permission.dao.master.HearingDiagnoseMapper; -import com.lyms.platform.permission.model.HearingDiagnose; -import com.lyms.platform.permission.model.HearingDiagnoseQuery; -import com.lyms.platform.permission.service.HearingDiagnoseService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; - -import java.util.List; - -@Service -public class HearingDiagnoseServiceImpl implements HearingDiagnoseService { - - @Autowired - private HearingDiagnoseMapper hearingDiagnoseMapper; - - @Override - public void addHearingDiagnose(HearingDiagnose obj) { - hearingDiagnoseMapper.addHearingDiagnose(obj); - } - - @Override - public void updateHearingDiagnose(HearingDiagnose obj) { - hearingDiagnoseMapper.updateHearingDiagnose(obj); - } - - @Override - public void deleteHearingDiagnose(String id) { - hearingDiagnoseMapper.deleteHearingDiagnose(id); - } - - @Override - public HearingDiagnose getHearingDiagnose(String id) { - return hearingDiagnoseMapper.getHearingDiagnose(id); - } - - @Override - public int queryHearingDiagnoseCount(HearingDiagnoseQuery query) { - return hearingDiagnoseMapper.queryHearingDiagnoseCount(query); - } - - @Override - public List queryHearingDiagnose(HearingDiagnoseQuery query) { - if (query.getNeed() != null) { - query.mysqlBuild(hearingDiagnoseMapper.queryHearingDiagnoseCount(query)); - } - return hearingDiagnoseMapper.queryHearingDiagnose(query); - } - -} \ No newline at end of file diff --git a/platform-biz-service/src/main/resources/mainOrm/master/BabyPatientExtendEarFollowUp.xml b/platform-biz-service/src/main/resources/mainOrm/master/BabyPatientExtendEarFollowUp.xml new file mode 100644 index 0000000..de7c503 --- /dev/null +++ b/platform-biz-service/src/main/resources/mainOrm/master/BabyPatientExtendEarFollowUp.xml @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + insert into baby_patient_extend_ear_follow_up + (id,baby_id,follow_time,follow_addr,mark_time,mark_result,mark_detail,follow_info,audiphone,operation,artifi_cochlea,guide_opinion,follow_doctor_name,follow_doctor_id,next_time,ifdel,ifclose,hospital_id,modify_time,modify_id,create_time,create_id,enalble) + values + (#{id},#{babyId},#{followTime},#{followAddr},#{markTime},#{markResult},#{markDetail},#{followInfo},#{audiphone},#{operation},#{artifiCochlea},#{guideOpinion},#{followDoctorName},#{followDoctorId},#{nextTime},#{ifdel},#{ifclose},#{hospitalId},#{modifyTime},#{modifyId},#{createTime},#{createId},#{enalble}) + + + + + update baby_patient_extend_ear_follow_up + + + baby_id = #{babyId,jdbcType=VARCHAR}, + + + follow_time = #{followTime,jdbcType=TIMESTAMP}, + + + follow_addr = #{followAddr,jdbcType=VARCHAR}, + + + mark_time = #{markTime,jdbcType=TIMESTAMP}, + + + mark_result = #{markResult,jdbcType=VARCHAR}, + + + mark_detail = #{markDetail,jdbcType=VARCHAR}, + + + follow_info = #{followInfo,jdbcType=VARCHAR}, + + + audiphone = #{audiphone,jdbcType=INTEGER}, + + + operation = #{operation,jdbcType=INTEGER}, + + + artifi_cochlea = #{artifiCochlea,jdbcType=INTEGER}, + + + guide_opinion = #{guideOpinion,jdbcType=VARCHAR}, + + + follow_doctor_name = #{followDoctorName,jdbcType=VARCHAR}, + + + follow_doctor_id = #{followDoctorId,jdbcType=VARCHAR}, + + + next_time = #{nextTime,jdbcType=TIMESTAMP}, + + + ifdel = #{ifdel,jdbcType=INTEGER}, + + + ifclose = #{ifclose,jdbcType=INTEGER}, + + + hospital_id = #{hospitalId,jdbcType=VARCHAR}, + + + modify_time = #{modifyTime,jdbcType=TIMESTAMP}, + + + modify_id = #{modifyId,jdbcType=VARCHAR}, + + + create_time = #{createTime,jdbcType=TIMESTAMP}, + + + create_id = #{createId,jdbcType=VARCHAR}, + + + enalble = #{enalble,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=VARCHAR} + + + + + delete from baby_patient_extend_ear_follow_up where id = #{id,jdbcType=VARCHAR} + + + + + + + + + order by ${sort} + + limit #{offset, jdbcType=INTEGER} , #{limit, jdbcType=INTEGER} + + + + + + + + 1 = 1 + + and id = #{id,jdbcType=VARCHAR} + + + and baby_id = #{babyId,jdbcType=VARCHAR} + + + and follow_time = #{followTime,jdbcType=TIMESTAMP} + + + and follow_addr = #{followAddr,jdbcType=VARCHAR} + + + and mark_time = #{markTime,jdbcType=TIMESTAMP} + + + and mark_result = #{markResult,jdbcType=VARCHAR} + + + and mark_detail = #{markDetail,jdbcType=VARCHAR} + + + and follow_info = #{followInfo,jdbcType=VARCHAR} + + + and audiphone = #{audiphone,jdbcType=INTEGER} + + + and operation = #{operation,jdbcType=INTEGER} + + + and artifi_cochlea = #{artifiCochlea,jdbcType=INTEGER} + + + and guide_opinion = #{guideOpinion,jdbcType=VARCHAR} + + + and follow_doctor_name = #{followDoctorName,jdbcType=VARCHAR} + + + and follow_doctor_id = #{followDoctorId,jdbcType=VARCHAR} + + + and next_time = #{nextTime,jdbcType=TIMESTAMP} + + + and ifdel = #{ifdel,jdbcType=INTEGER} + + + and ifclose = #{ifclose,jdbcType=INTEGER} + + + and hospital_id = #{hospitalId,jdbcType=VARCHAR} + + + and modify_time = #{modifyTime,jdbcType=TIMESTAMP} + + + and modify_id = #{modifyId,jdbcType=VARCHAR} + + + and create_time = #{createTime,jdbcType=TIMESTAMP} + + + and create_id = #{createId,jdbcType=VARCHAR} + + + and enalble = #{enalble,jdbcType=INTEGER} + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-biz-service/src/main/resources/mainOrm/master/BabyPatientExtendEarHearingDiagnose.xml b/platform-biz-service/src/main/resources/mainOrm/master/BabyPatientExtendEarHearingDiagnose.xml new file mode 100644 index 0000000..ffa4537 --- /dev/null +++ b/platform-biz-service/src/main/resources/mainOrm/master/BabyPatientExtendEarHearingDiagnose.xml @@ -0,0 +1,747 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +insert into baby_patient_extend_ear_hearing_diagnose (id,baby_id,hospital_id,diagnose_time,high_factor,abr_left_dbnhl,abr_left_l_wave,abr_left_lll_wave,abr_left_V_wave,abr_left_shield,abr_right_dbnhl,abr_right_l_wave,abr_right_lll_wave,abr_right_V_wave,abr_right_shield,abr_thr_left_dbnhl,abr_thr_left_ms,abr_thr_left_shield_dbnhl,abr_thr_right_dbnhl,abr_thr_right_ms,abr_thr_right_shield_dbnhl,abr_bc_left_thr_dbnhl,abr_bc_left_thr_ms,abr_bc_left_thr_shield_dbnhl,abr_bc_right_thr_dbnhl,abr_bc_right_thr_ms,abr_bc_right_thr_shield_dbnhl,reaction_thr_left_dbnhl,reaction_thr_left_shield_dbnhl,reaction_thr_right_dbnhl,reaction_thr_right_shield_dbnhl,oae_left_750,oae_left_1k,oae_left_2k,oae_left_3k,oae_left_4k,oae_left_6k,oae_left_8k,oae_left_10k,oae_right_750,oae_right_1k,oae_right_2k,oae_right_3k,oae_right_4k,oae_right_6k,oae_right_8k,oae_right_10k,acad_left_curve_type,acad_left_drum_cp,acad_left_acco,acad_left_secondo_volume,acad_left_gradient,acad_left_1K_reflect_thre,acad_right_curve_type,acad_right_drum_cp,acad_right_acco,acad_right_secondo_volume,acad_right_gradient,acad_right_1K_reflect_thre,sound_refl_left_ipsi_500,sound_refl_left_ipsi_1k,sound_refl_left_ipsi_2k,sound_refl_left_ipsi_4k,sound_refl_left_offsi_500,sound_refl_left_offsi_1k,sound_refl_left_offsi_2k,sound_refl_left_offsi_4k,sound_refl_left_atten,sound_refl_right_ipsi_500,sound_refl_right_ipsi_1k,sound_refl_right_ipsi_2k,sound_refl_right_ipsi_4k,sound_refl_right_offsi_500,sound_refl_right_offsi_1k,sound_refl_right_offsi_2k,sound_refl_right_offsi_4k,sound_refl_right_atten,aabr_left_if_pass,aabr_right_if_pass,assr_left_500,assr_left_1k,assr_left_2k,assr_left_4k,assr_right_500,assr_right_1k,assr_right_2k,assr_right_4k,diagn_hand_sugge,diagn_guide_sugge,diagn_doctor_id,diagn_next_time,create_time,create_id,modify_id,modify_time,ifdel,enalble) values (#{id},#{babyId},#{hospitalId},#{diagnoseTime},#{highFactor},#{abrLeftDbnhl},#{abrLeftLWave},#{abrLeftLllWave},#{abrLeftVWave},#{abrLeftShield},#{abrRightDbnhl},#{abrRightLWave},#{abrRightLllWave},#{abrRightVWave},#{abrRightShield},#{abrThrLeftDbnhl},#{abrThrLeftMs},#{abrThrLeftShieldDbnhl},#{abrThrRightDbnhl},#{abrThrRightMs},#{abrThrRightShieldDbnhl},#{abrBcLeftThrDbnhl},#{abrBcLeftThrMs},#{abrBcLeftThrShieldDbnhl},#{abrBcRightThrDbnhl},#{abrBcRightThrMs},#{abrBcRightThrShieldDbnhl},#{reactionThrLeftDbnhl},#{reactionThrLeftShieldDbnhl},#{reactionThrRightDbnhl},#{reactionThrRightShieldDbnhl},#{oaeLeft750},#{oaeLeft1k},#{oaeLeft2k},#{oaeLeft3k},#{oaeLeft4k},#{oaeLeft6k},#{oaeLeft8k},#{oaeLeft10k},#{oaeRight750},#{oaeRight1k},#{oaeRight2k},#{oaeRight3k},#{oaeRight4k},#{oaeRight6k},#{oaeRight8k},#{oaeRight10k},#{acadLeftCurveType},#{acadLeftDrumCp},#{acadLeftAcco},#{acadLeftSecondoVolume},#{acadLeftGradient},#{acadLeft1kReflectThre},#{acadRightCurveType},#{acadRightDrumCp},#{acadRightAcco},#{acadRightSecondoVolume},#{acadRightGradient},#{acadRight1kReflectThre},#{soundReflLeftIpsi500},#{soundReflLeftIpsi1k},#{soundReflLeftIpsi2k},#{soundReflLeftIpsi4k},#{soundReflLeftOffsi500},#{soundReflLeftOffsi1k},#{soundReflLeftOffsi2k},#{soundReflLeftOffsi4k},#{soundReflLeftAtten},#{soundReflRightIpsi500},#{soundReflRightIpsi1k},#{soundReflRightIpsi2k},#{soundReflRightIpsi4k},#{soundReflRightOffsi500},#{soundReflRightOffsi1k},#{soundReflRightOffsi2k},#{soundReflRightOffsi4k},#{soundReflRightAtten},#{aabrLeftIfPass},#{aabrRightIfPass},#{assrLeft500},#{assrLeft1k},#{assrLeft2k},#{assrLeft4k},#{assrRight500},#{assrRight1k},#{assrRight2k},#{assrRight4k},#{diagnHandSugge},#{diagnGuideSugge},#{diagnDoctorId},#{diagnNextTime},#{createTime},#{createId},#{modifyId},#{modifyTime},#{ifdel},#{enalble}) + + + + + update baby_patient_extend_ear_hearing_diagnose + + + baby_id = #{babyId,jdbcType=VARCHAR}, + + + hospital_id = #{hospitalId,jdbcType=VARCHAR}, + + + diagnose_time = #{diagnoseTime,jdbcType=TIMESTAMP}, + + + high_factor = #{highFactor,jdbcType=VARCHAR}, + + + abr_left_dbnhl = #{abrLeftDbnhl,jdbcType=VARCHAR}, + + + abr_left_l_wave = #{abrLeftLWave,jdbcType=VARCHAR}, + + + abr_left_lll_wave = #{abrLeftLllWave,jdbcType=VARCHAR}, + + + abr_left_V_wave = #{abrLeftVWave,jdbcType=VARCHAR}, + + + abr_left_shield = #{abrLeftShield,jdbcType=VARCHAR}, + + + abr_right_dbnhl = #{abrRightDbnhl,jdbcType=VARCHAR}, + + + abr_right_l_wave = #{abrRightLWave,jdbcType=VARCHAR}, + + + abr_right_lll_wave = #{abrRightLllWave,jdbcType=VARCHAR}, + + + abr_right_V_wave = #{abrRightVWave,jdbcType=VARCHAR}, + + + abr_right_shield = #{abrRightShield,jdbcType=VARCHAR}, + + + abr_thr_left_dbnhl = #{abrThrLeftDbnhl,jdbcType=VARCHAR}, + + + abr_thr_left_ms = #{abrThrLeftMs,jdbcType=VARCHAR}, + + + abr_thr_left_shield_dbnhl = #{abrThrLeftShieldDbnhl,jdbcType=VARCHAR}, + + + abr_thr_right_dbnhl = #{abrThrRightDbnhl,jdbcType=VARCHAR}, + + + abr_thr_right_ms = #{abrThrRightMs,jdbcType=VARCHAR}, + + + abr_thr_right_shield_dbnhl = #{abrThrRightShieldDbnhl,jdbcType=VARCHAR}, + + + abr_bc_left_thr_dbnhl = #{abrBcLeftThrDbnhl,jdbcType=VARCHAR}, + + + abr_bc_left_thr_ms = #{abrBcLeftThrMs,jdbcType=VARCHAR}, + + + abr_bc_left_thr_shield_dbnhl = #{abrBcLeftThrShieldDbnhl,jdbcType=VARCHAR}, + + + abr_bc_right_thr_dbnhl = #{abrBcRightThrDbnhl,jdbcType=VARCHAR}, + + + abr_bc_right_thr_ms = #{abrBcRightThrMs,jdbcType=VARCHAR}, + + + abr_bc_right_thr_shield_dbnhl = #{abrBcRightThrShieldDbnhl,jdbcType=VARCHAR}, + + + reaction_thr_left_dbnhl = #{reactionThrLeftDbnhl,jdbcType=VARCHAR}, + + + reaction_thr_left_shield_dbnhl = #{reactionThrLeftShieldDbnhl,jdbcType=VARCHAR}, + + + reaction_thr_right_dbnhl = #{reactionThrRightDbnhl,jdbcType=VARCHAR}, + + + reaction_thr_right_shield_dbnhl = #{reactionThrRightShieldDbnhl,jdbcType=VARCHAR}, + + + oae_left_750 = #{oaeLeft750,jdbcType=VARCHAR}, + + + oae_left_1k = #{oaeLeft1k,jdbcType=VARCHAR}, + + + oae_left_2k = #{oaeLeft2k,jdbcType=VARCHAR}, + + + oae_left_3k = #{oaeLeft3k,jdbcType=VARCHAR}, + + + oae_left_4k = #{oaeLeft4k,jdbcType=VARCHAR}, + + + oae_left_6k = #{oaeLeft6k,jdbcType=VARCHAR}, + + + oae_left_8k = #{oaeLeft8k,jdbcType=VARCHAR}, + + + oae_left_10k = #{oaeLeft10k,jdbcType=VARCHAR}, + + + oae_right_750 = #{oaeRight750,jdbcType=VARCHAR}, + + + oae_right_1k = #{oaeRight1k,jdbcType=VARCHAR}, + + + oae_right_2k = #{oaeRight2k,jdbcType=VARCHAR}, + + + oae_right_3k = #{oaeRight3k,jdbcType=VARCHAR}, + + + oae_right_4k = #{oaeRight4k,jdbcType=VARCHAR}, + + + oae_right_6k = #{oaeRight6k,jdbcType=VARCHAR}, + + + oae_right_8k = #{oaeRight8k,jdbcType=VARCHAR}, + + + oae_right_10k = #{oaeRight10k,jdbcType=VARCHAR}, + + + acad_left_curve_type = #{acadLeftCurveType,jdbcType=VARCHAR}, + + + acad_left_drum_cp = #{acadLeftDrumCp,jdbcType=VARCHAR}, + + + acad_left_acco = #{acadLeftAcco,jdbcType=VARCHAR}, + + + acad_left_secondo_volume = #{acadLeftSecondoVolume,jdbcType=VARCHAR}, + + + acad_left_gradient = #{acadLeftGradient,jdbcType=VARCHAR}, + + + acad_left_1K_reflect_thre = #{acadLeft1kReflectThre,jdbcType=VARCHAR}, + + + acad_right_curve_type = #{acadRightCurveType,jdbcType=VARCHAR}, + + + acad_right_drum_cp = #{acadRightDrumCp,jdbcType=VARCHAR}, + + + acad_right_acco = #{acadRightAcco,jdbcType=VARCHAR}, + + + acad_right_secondo_volume = #{acadRightSecondoVolume,jdbcType=VARCHAR}, + + + acad_right_gradient = #{acadRightGradient,jdbcType=VARCHAR}, + + + acad_right_1K_reflect_thre = #{acadRight1kReflectThre,jdbcType=VARCHAR}, + + + sound_refl_left_ipsi_500 = #{soundReflLeftIpsi500,jdbcType=VARCHAR}, + + + sound_refl_left_ipsi_1k = #{soundReflLeftIpsi1k,jdbcType=VARCHAR}, + + + sound_refl_left_ipsi_2k = #{soundReflLeftIpsi2k,jdbcType=VARCHAR}, + + + sound_refl_left_ipsi_4k = #{soundReflLeftIpsi4k,jdbcType=VARCHAR}, + + + sound_refl_left_offsi_500 = #{soundReflLeftOffsi500,jdbcType=VARCHAR}, + + + sound_refl_left_offsi_1k = #{soundReflLeftOffsi1k,jdbcType=VARCHAR}, + + + sound_refl_left_offsi_2k = #{soundReflLeftOffsi2k,jdbcType=VARCHAR}, + + + sound_refl_left_offsi_4k = #{soundReflLeftOffsi4k,jdbcType=VARCHAR}, + + + sound_refl_left_atten = #{soundReflLeftAtten,jdbcType=VARCHAR}, + + + sound_refl_right_ipsi_500 = #{soundReflRightIpsi500,jdbcType=VARCHAR}, + + + sound_refl_right_ipsi_1k = #{soundReflRightIpsi1k,jdbcType=VARCHAR}, + + + sound_refl_right_ipsi_2k = #{soundReflRightIpsi2k,jdbcType=VARCHAR}, + + + sound_refl_right_ipsi_4k = #{soundReflRightIpsi4k,jdbcType=VARCHAR}, + + + sound_refl_right_offsi_500 = #{soundReflRightOffsi500,jdbcType=VARCHAR}, + + + sound_refl_right_offsi_1k = #{soundReflRightOffsi1k,jdbcType=VARCHAR}, + + + sound_refl_right_offsi_2k = #{soundReflRightOffsi2k,jdbcType=VARCHAR}, + + + sound_refl_right_offsi_4k = #{soundReflRightOffsi4k,jdbcType=VARCHAR}, + + + sound_refl_right_atten = #{soundReflRightAtten,jdbcType=VARCHAR}, + + + aabr_left_if_pass = #{aabrLeftIfPass,jdbcType=INTEGER}, + + + aabr_right_if_pass = #{aabrRightIfPass,jdbcType=INTEGER}, + + + assr_left_500 = #{assrLeft500,jdbcType=VARCHAR}, + + + assr_left_1k = #{assrLeft1k,jdbcType=VARCHAR}, + + + assr_left_2k = #{assrLeft2k,jdbcType=VARCHAR}, + + + assr_left_4k = #{assrLeft4k,jdbcType=VARCHAR}, + + + assr_right_500 = #{assrRight500,jdbcType=VARCHAR}, + + + assr_right_1k = #{assrRight1k,jdbcType=VARCHAR}, + + + assr_right_2k = #{assrRight2k,jdbcType=VARCHAR}, + + + assr_right_4k = #{assrRight4k,jdbcType=VARCHAR}, + + + diagn_hand_sugge = #{diagnHandSugge,jdbcType=VARCHAR}, + + + diagn_guide_sugge = #{diagnGuideSugge,jdbcType=VARCHAR}, + + + diagn_doctor_id = #{diagnDoctorId,jdbcType=VARCHAR}, + + + diagn_next_time = #{diagnNextTime,jdbcType=TIMESTAMP}, + + + create_time = #{createTime,jdbcType=TIMESTAMP}, + + + create_id = #{createId,jdbcType=VARCHAR}, + + + modify_id = #{modifyId,jdbcType=VARCHAR}, + + + modify_time = #{modifyTime,jdbcType=TIMESTAMP}, + + + ifdel = #{ifdel,jdbcType=INTEGER}, + + + enalble = #{enalble,jdbcType=INTEGER}, + + + where id = #{id,jdbcType=VARCHAR} + + + + +delete from baby_patient_extend_ear_hearing_diagnose where id = #{id,jdbcType=VARCHAR} + + + + + + + + + order by ${sort} + + limit #{offset, jdbcType=INTEGER} , #{limit, jdbcType=INTEGER} + + + + + + + + 1 = 1 + + and id = #{id,jdbcType=VARCHAR} + + + and baby_id = #{babyId,jdbcType=VARCHAR} + + + and hospital_id = #{hospitalId,jdbcType=VARCHAR} + + + and diagnose_time = #{diagnoseTime,jdbcType=TIMESTAMP} + + + and high_factor = #{highFactor,jdbcType=VARCHAR} + + + and abr_left_dbnhl = #{abrLeftDbnhl,jdbcType=VARCHAR} + + + and abr_left_l_wave = #{abrLeftLWave,jdbcType=VARCHAR} + + + and abr_left_lll_wave = #{abrLeftLllWave,jdbcType=VARCHAR} + + + and abr_left_V_wave = #{abrLeftVWave,jdbcType=VARCHAR} + + + and abr_left_shield = #{abrLeftShield,jdbcType=VARCHAR} + + + and abr_right_dbnhl = #{abrRightDbnhl,jdbcType=VARCHAR} + + + and abr_right_l_wave = #{abrRightLWave,jdbcType=VARCHAR} + + + and abr_right_lll_wave = #{abrRightLllWave,jdbcType=VARCHAR} + + + and abr_right_V_wave = #{abrRightVWave,jdbcType=VARCHAR} + + + and abr_right_shield = #{abrRightShield,jdbcType=VARCHAR} + + + and abr_thr_left_dbnhl = #{abrThrLeftDbnhl,jdbcType=VARCHAR} + + + and abr_thr_left_ms = #{abrThrLeftMs,jdbcType=VARCHAR} + + + and abr_thr_left_shield_dbnhl = #{abrThrLeftShieldDbnhl,jdbcType=VARCHAR} + + + and abr_thr_right_dbnhl = #{abrThrRightDbnhl,jdbcType=VARCHAR} + + + and abr_thr_right_ms = #{abrThrRightMs,jdbcType=VARCHAR} + + + and abr_thr_right_shield_dbnhl = #{abrThrRightShieldDbnhl,jdbcType=VARCHAR} + + + and abr_bc_left_thr_dbnhl = #{abrBcLeftThrDbnhl,jdbcType=VARCHAR} + + + and abr_bc_left_thr_ms = #{abrBcLeftThrMs,jdbcType=VARCHAR} + + + and abr_bc_left_thr_shield_dbnhl = #{abrBcLeftThrShieldDbnhl,jdbcType=VARCHAR} + + + and abr_bc_right_thr_dbnhl = #{abrBcRightThrDbnhl,jdbcType=VARCHAR} + + + and abr_bc_right_thr_ms = #{abrBcRightThrMs,jdbcType=VARCHAR} + + + and abr_bc_right_thr_shield_dbnhl = #{abrBcRightThrShieldDbnhl,jdbcType=VARCHAR} + + + and reaction_thr_left_dbnhl = #{reactionThrLeftDbnhl,jdbcType=VARCHAR} + + + and reaction_thr_left_shield_dbnhl = #{reactionThrLeftShieldDbnhl,jdbcType=VARCHAR} + + + and reaction_thr_right_dbnhl = #{reactionThrRightDbnhl,jdbcType=VARCHAR} + + + and reaction_thr_right_shield_dbnhl = #{reactionThrRightShieldDbnhl,jdbcType=VARCHAR} + + + and oae_left_750 = #{oaeLeft750,jdbcType=VARCHAR} + + + and oae_left_1k = #{oaeLeft1k,jdbcType=VARCHAR} + + + and oae_left_2k = #{oaeLeft2k,jdbcType=VARCHAR} + + + and oae_left_3k = #{oaeLeft3k,jdbcType=VARCHAR} + + + and oae_left_4k = #{oaeLeft4k,jdbcType=VARCHAR} + + + and oae_left_6k = #{oaeLeft6k,jdbcType=VARCHAR} + + + and oae_left_8k = #{oaeLeft8k,jdbcType=VARCHAR} + + + and oae_left_10k = #{oaeLeft10k,jdbcType=VARCHAR} + + + and oae_right_750 = #{oaeRight750,jdbcType=VARCHAR} + + + and oae_right_1k = #{oaeRight1k,jdbcType=VARCHAR} + + + and oae_right_2k = #{oaeRight2k,jdbcType=VARCHAR} + + + and oae_right_3k = #{oaeRight3k,jdbcType=VARCHAR} + + + and oae_right_4k = #{oaeRight4k,jdbcType=VARCHAR} + + + and oae_right_6k = #{oaeRight6k,jdbcType=VARCHAR} + + + and oae_right_8k = #{oaeRight8k,jdbcType=VARCHAR} + + + and oae_right_10k = #{oaeRight10k,jdbcType=VARCHAR} + + + and acad_left_curve_type = #{acadLeftCurveType,jdbcType=VARCHAR} + + + and acad_left_drum_cp = #{acadLeftDrumCp,jdbcType=VARCHAR} + + + and acad_left_acco = #{acadLeftAcco,jdbcType=VARCHAR} + + + and acad_left_secondo_volume = #{acadLeftSecondoVolume,jdbcType=VARCHAR} + + + and acad_left_gradient = #{acadLeftGradient,jdbcType=VARCHAR} + + + and acad_left_1K_reflect_thre = #{acadLeft1kReflectThre,jdbcType=VARCHAR} + + + and acad_right_curve_type = #{acadRightCurveType,jdbcType=VARCHAR} + + + and acad_right_drum_cp = #{acadRightDrumCp,jdbcType=VARCHAR} + + + and acad_right_acco = #{acadRightAcco,jdbcType=VARCHAR} + + + and acad_right_secondo_volume = #{acadRightSecondoVolume,jdbcType=VARCHAR} + + + and acad_right_gradient = #{acadRightGradient,jdbcType=VARCHAR} + + + and acad_right_1K_reflect_thre = #{acadRight1kReflectThre,jdbcType=VARCHAR} + + + and sound_refl_left_ipsi_500 = #{soundReflLeftIpsi500,jdbcType=VARCHAR} + + + and sound_refl_left_ipsi_1k = #{soundReflLeftIpsi1k,jdbcType=VARCHAR} + + + and sound_refl_left_ipsi_2k = #{soundReflLeftIpsi2k,jdbcType=VARCHAR} + + + and sound_refl_left_ipsi_4k = #{soundReflLeftIpsi4k,jdbcType=VARCHAR} + + + and sound_refl_left_offsi_500 = #{soundReflLeftOffsi500,jdbcType=VARCHAR} + + + and sound_refl_left_offsi_1k = #{soundReflLeftOffsi1k,jdbcType=VARCHAR} + + + and sound_refl_left_offsi_2k = #{soundReflLeftOffsi2k,jdbcType=VARCHAR} + + + and sound_refl_left_offsi_4k = #{soundReflLeftOffsi4k,jdbcType=VARCHAR} + + + and sound_refl_left_atten = #{soundReflLeftAtten,jdbcType=VARCHAR} + + + and sound_refl_right_ipsi_500 = #{soundReflRightIpsi500,jdbcType=VARCHAR} + + + and sound_refl_right_ipsi_1k = #{soundReflRightIpsi1k,jdbcType=VARCHAR} + + + and sound_refl_right_ipsi_2k = #{soundReflRightIpsi2k,jdbcType=VARCHAR} + + + and sound_refl_right_ipsi_4k = #{soundReflRightIpsi4k,jdbcType=VARCHAR} + + + and sound_refl_right_offsi_500 = #{soundReflRightOffsi500,jdbcType=VARCHAR} + + + and sound_refl_right_offsi_1k = #{soundReflRightOffsi1k,jdbcType=VARCHAR} + + + and sound_refl_right_offsi_2k = #{soundReflRightOffsi2k,jdbcType=VARCHAR} + + + and sound_refl_right_offsi_4k = #{soundReflRightOffsi4k,jdbcType=VARCHAR} + + + and sound_refl_right_atten = #{soundReflRightAtten,jdbcType=VARCHAR} + + + and aabr_left_if_pass = #{aabrLeftIfPass,jdbcType=INTEGER} + + + and aabr_right_if_pass = #{aabrRightIfPass,jdbcType=INTEGER} + + + and assr_left_500 = #{assrLeft500,jdbcType=VARCHAR} + + + and assr_left_1k = #{assrLeft1k,jdbcType=VARCHAR} + + + and assr_left_2k = #{assrLeft2k,jdbcType=VARCHAR} + + + and assr_left_4k = #{assrLeft4k,jdbcType=VARCHAR} + + + and assr_right_500 = #{assrRight500,jdbcType=VARCHAR} + + + and assr_right_1k = #{assrRight1k,jdbcType=VARCHAR} + + + and assr_right_2k = #{assrRight2k,jdbcType=VARCHAR} + + + and assr_right_4k = #{assrRight4k,jdbcType=VARCHAR} + + + and diagn_hand_sugge = #{diagnHandSugge,jdbcType=VARCHAR} + + + and diagn_guide_sugge = #{diagnGuideSugge,jdbcType=VARCHAR} + + + and diagn_doctor_id = #{diagnDoctorId,jdbcType=VARCHAR} + + + and diagn_next_time = #{diagnNextTime,jdbcType=TIMESTAMP} + + + and create_time = #{createTime,jdbcType=TIMESTAMP} + + + and create_id = #{createId,jdbcType=VARCHAR} + + + and modify_id = #{modifyId,jdbcType=VARCHAR} + + + and modify_time = #{modifyTime,jdbcType=TIMESTAMP} + + + and ifdel = #{ifdel,jdbcType=INTEGER} + + + and enalble = #{enalble,jdbcType=INTEGER} + + + + + + + + + + + + \ No newline at end of file diff --git a/platform-biz-service/src/main/resources/mainOrm/master/FollowUp.xml b/platform-biz-service/src/main/resources/mainOrm/master/FollowUp.xml deleted file mode 100644 index 22fd4b8..0000000 --- a/platform-biz-service/src/main/resources/mainOrm/master/FollowUp.xml +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -insert into follow_up (id,baby_id,follow_time,follow_addr,mark_time,mark_result,mark_detail,follow_info,audiphone,operation,artifi_cochlea,guide_opinion,follow_doctor_name,follow_doctor_id,next_time,ifdel,ifclose,hospital_id,modify_time,modify_id,create_time,create_id,enalble) values (#{id},#{babyId},#{followTime},#{followAddr},#{markTime},#{markResult},#{markDetail},#{followInfo},#{audiphone},#{operation},#{artifiCochlea},#{guideOpinion},#{followDoctorName},#{followDoctorId},#{nextTime},#{ifdel},#{ifclose},#{hospitalId},#{modifyTime},#{modifyId},#{createTime},#{createId},#{enalble}) - - - - - update follow_up - - - id = #{id,jdbcType=VARCHAR}, - - - baby_id = #{babyId,jdbcType=VARCHAR}, - - - follow_time = #{followTime,jdbcType=TIMESTAMP}, - - - follow_addr = #{followAddr,jdbcType=VARCHAR}, - - - mark_time = #{markTime,jdbcType=TIMESTAMP}, - - - mark_result = #{markResult,jdbcType=VARCHAR}, - - - mark_detail = #{markDetail,jdbcType=VARCHAR}, - - - follow_info = #{followInfo,jdbcType=VARCHAR}, - - - audiphone = #{audiphone,jdbcType=INTEGER}, - - - operation = #{operation,jdbcType=INTEGER}, - - - artifi_cochlea = #{artifiCochlea,jdbcType=INTEGER}, - - - guide_opinion = #{guideOpinion,jdbcType=VARCHAR}, - - - follow_doctor_name = #{followDoctorName,jdbcType=VARCHAR}, - - - follow_doctor_id = #{followDoctorId,jdbcType=VARCHAR}, - - - next_time = #{nextTime,jdbcType=TIMESTAMP}, - - - ifdel = #{ifdel,jdbcType=INTEGER}, - - - ifclose = #{ifclose,jdbcType=INTEGER}, - - - hospital_id = #{hospitalId,jdbcType=VARCHAR}, - - - modify_time = #{modifyTime,jdbcType=TIMESTAMP}, - - - modify_id = #{modifyId,jdbcType=VARCHAR}, - - - create_time = #{createTime,jdbcType=TIMESTAMP}, - - - create_id = #{createId,jdbcType=VARCHAR}, - - - enalble = #{enalble,jdbcType=INTEGER}, - - - - - - - - - - - - - - - order by ${sort} - - limit #{offset, jdbcType=INTEGER} , #{limit, jdbcType=INTEGER} - - - - - - - - 1 = 1 - - and id = #{id,jdbcType=VARCHAR} - - - and baby_id = #{babyId,jdbcType=VARCHAR} - - - and follow_time = #{followTime,jdbcType=TIMESTAMP} - - - and follow_addr = #{followAddr,jdbcType=VARCHAR} - - - and mark_time = #{markTime,jdbcType=TIMESTAMP} - - - and mark_result = #{markResult,jdbcType=VARCHAR} - - - and mark_detail = #{markDetail,jdbcType=VARCHAR} - - - and follow_info = #{followInfo,jdbcType=VARCHAR} - - - and audiphone = #{audiphone,jdbcType=INTEGER} - - - and operation = #{operation,jdbcType=INTEGER} - - - and artifi_cochlea = #{artifiCochlea,jdbcType=INTEGER} - - - and guide_opinion = #{guideOpinion,jdbcType=VARCHAR} - - - and follow_doctor_name = #{followDoctorName,jdbcType=VARCHAR} - - - and follow_doctor_id = #{followDoctorId,jdbcType=VARCHAR} - - - and next_time = #{nextTime,jdbcType=TIMESTAMP} - - - and ifdel = #{ifdel,jdbcType=INTEGER} - - - and ifclose = #{ifclose,jdbcType=INTEGER} - - - and hospital_id = #{hospitalId,jdbcType=VARCHAR} - - - and modify_time = #{modifyTime,jdbcType=TIMESTAMP} - - - and modify_id = #{modifyId,jdbcType=VARCHAR} - - - and create_time = #{createTime,jdbcType=TIMESTAMP} - - - and create_id = #{createId,jdbcType=VARCHAR} - - - and enalble = #{enalble,jdbcType=INTEGER} - - - - - - - - - - - - \ No newline at end of file diff --git a/platform-biz-service/src/main/resources/mainOrm/master/HearingDiagnose.xml b/platform-biz-service/src/main/resources/mainOrm/master/HearingDiagnose.xml deleted file mode 100644 index b9deca3..0000000 --- a/platform-biz-service/src/main/resources/mainOrm/master/HearingDiagnose.xml +++ /dev/null @@ -1,743 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -insert into hearing_diagnose (id,baby_id,hospital_id,diagnose_time,high_factor,abr_left_dbnhl,abr_left_l_wave,abr_left_lll_wave,abr_left_V_wave,abr_left_shield,abr_right_dbnhl,abr_right_l_wave,abr_right_lll_wave,abr_right_V_wave,abr_right_shield,abr_thr_left_dbnhl,abr_thr_left_ms,abr_thr_left_shield_dbnhl,abr_thr_right_dbnhl,abr_thr_right_ms,abr_thr_right_shield_dbnhl,abr_bc_left_thr_dbnhl,abr_bc_left_thr_ms,abr_bc_left_thr_shield_dbnhl,abr_bc_right_thr_dbnhl,abr_bc_right_thr_ms,abr_bc_right_thr_shield_dbnhl,reaction_thr_left_dbnhl,reaction_thr_left_shield_dbnhl,reaction_thr_right_dbnhl,reaction_thr_right_shield_dbnhl,oae_left_750,oae_left_1k,oae_left_2k,oae_left_3k,oae_left_4k,oae_left_6k,oae_left_8k,oae_left_10k,oae_right_750,oae_right_1k,oae_right_2k,oae_right_3k,oae_right_4k,oae_right_6k,oae_right_8k,oae_right_10k,acad_left_curve_type,acad_left_drum_cp,acad_left_acco,acad_left_secondo_volume,acad_left_gradient,acad_left_1K_reflect_thre,acad_right_curve_type,acad_right_drum_cp,acad_right_acco,acad_right_secondo_volume,acad_right_gradient,acad_right_1K_reflect_thre,sound_refl_left_ipsi_500,sound_refl_left_ipsi_1k,sound_refl_left_ipsi_2k,sound_refl_left_ipsi_4k,sound_refl_left_offsi_500,sound_refl_left_offsi_1k,sound_refl_left_offsi_2k,sound_refl_left_offsi_4k,sound_refl_left_atten,sound_refl_right_ipsi_500,sound_refl_right_ipsi_1k,sound_refl_right_ipsi_2k,sound_refl_right_ipsi_4k,sound_refl_right_offsi_500,sound_refl_right_offsi_1k,sound_refl_right_offsi_2k,sound_refl_right_offsi_4k,sound_refl_right_atten,aabr_left_if_pass,aabr_right_if_pass,assr_left_500,assr_left_1k,assr_left_2k,assr_left_4k,assr_right_500,assr_right_1k,assr_right_2k,assr_right_4k,diagn_hand_sugge,diagn_guide_sugge,diagn_doctor_id,diagn_next_time,create_time,create_id,modify_id,modify_time,ifdel,enalble) values (#{id},#{babyId},#{hospitalId},#{diagnoseTime},#{highFactor},#{abrLeftDbnhl},#{abrLeftLWave},#{abrLeftLllWave},#{abrLeftVWave},#{abrLeftShield},#{abrRightDbnhl},#{abrRightLWave},#{abrRightLllWave},#{abrRightVWave},#{abrRightShield},#{abrThrLeftDbnhl},#{abrThrLeftMs},#{abrThrLeftShieldDbnhl},#{abrThrRightDbnhl},#{abrThrRightMs},#{abrThrRightShieldDbnhl},#{abrBcLeftThrDbnhl},#{abrBcLeftThrMs},#{abrBcLeftThrShieldDbnhl},#{abrBcRightThrDbnhl},#{abrBcRightThrMs},#{abrBcRightThrShieldDbnhl},#{reactionThrLeftDbnhl},#{reactionThrLeftShieldDbnhl},#{reactionThrRightDbnhl},#{reactionThrRightShieldDbnhl},#{oaeLeft750},#{oaeLeft1k},#{oaeLeft2k},#{oaeLeft3k},#{oaeLeft4k},#{oaeLeft6k},#{oaeLeft8k},#{oaeLeft10k},#{oaeRight750},#{oaeRight1k},#{oaeRight2k},#{oaeRight3k},#{oaeRight4k},#{oaeRight6k},#{oaeRight8k},#{oaeRight10k},#{acadLeftCurveType},#{acadLeftDrumCp},#{acadLeftAcco},#{acadLeftSecondoVolume},#{acadLeftGradient},#{acadLeft1kReflectThre},#{acadRightCurveType},#{acadRightDrumCp},#{acadRightAcco},#{acadRightSecondoVolume},#{acadRightGradient},#{acadRight1kReflectThre},#{soundReflLeftIpsi500},#{soundReflLeftIpsi1k},#{soundReflLeftIpsi2k},#{soundReflLeftIpsi4k},#{soundReflLeftOffsi500},#{soundReflLeftOffsi1k},#{soundReflLeftOffsi2k},#{soundReflLeftOffsi4k},#{soundReflLeftAtten},#{soundReflRightIpsi500},#{soundReflRightIpsi1k},#{soundReflRightIpsi2k},#{soundReflRightIpsi4k},#{soundReflRightOffsi500},#{soundReflRightOffsi1k},#{soundReflRightOffsi2k},#{soundReflRightOffsi4k},#{soundReflRightAtten},#{aabrLeftIfPass},#{aabrRightIfPass},#{assrLeft500},#{assrLeft1k},#{assrLeft2k},#{assrLeft4k},#{assrRight500},#{assrRight1k},#{assrRight2k},#{assrRight4k},#{diagnHandSugge},#{diagnGuideSugge},#{diagnDoctorId},#{diagnNextTime},#{createTime},#{createId},#{modifyId},#{modifyTime},#{ifdel},#{enalble}) - - - - - update hearing_diagnose - - - id = #{id,jdbcType=VARCHAR}, - - - baby_id = #{babyId,jdbcType=VARCHAR}, - - - hospital_id = #{hospitalId,jdbcType=VARCHAR}, - - - diagnose_time = #{diagnoseTime,jdbcType=TIMESTAMP}, - - - high_factor = #{highFactor,jdbcType=VARCHAR}, - - - abr_left_dbnhl = #{abrLeftDbnhl,jdbcType=VARCHAR}, - - - abr_left_l_wave = #{abrLeftLWave,jdbcType=VARCHAR}, - - - abr_left_lll_wave = #{abrLeftLllWave,jdbcType=VARCHAR}, - - - abr_left_V_wave = #{abrLeftVWave,jdbcType=VARCHAR}, - - - abr_left_shield = #{abrLeftShield,jdbcType=VARCHAR}, - - - abr_right_dbnhl = #{abrRightDbnhl,jdbcType=VARCHAR}, - - - abr_right_l_wave = #{abrRightLWave,jdbcType=VARCHAR}, - - - abr_right_lll_wave = #{abrRightLllWave,jdbcType=VARCHAR}, - - - abr_right_V_wave = #{abrRightVWave,jdbcType=VARCHAR}, - - - abr_right_shield = #{abrRightShield,jdbcType=VARCHAR}, - - - abr_thr_left_dbnhl = #{abrThrLeftDbnhl,jdbcType=VARCHAR}, - - - abr_thr_left_ms = #{abrThrLeftMs,jdbcType=VARCHAR}, - - - abr_thr_left_shield_dbnhl = #{abrThrLeftShieldDbnhl,jdbcType=VARCHAR}, - - - abr_thr_right_dbnhl = #{abrThrRightDbnhl,jdbcType=VARCHAR}, - - - abr_thr_right_ms = #{abrThrRightMs,jdbcType=VARCHAR}, - - - abr_thr_right_shield_dbnhl = #{abrThrRightShieldDbnhl,jdbcType=VARCHAR}, - - - abr_bc_left_thr_dbnhl = #{abrBcLeftThrDbnhl,jdbcType=VARCHAR}, - - - abr_bc_left_thr_ms = #{abrBcLeftThrMs,jdbcType=VARCHAR}, - - - abr_bc_left_thr_shield_dbnhl = #{abrBcLeftThrShieldDbnhl,jdbcType=VARCHAR}, - - - abr_bc_right_thr_dbnhl = #{abrBcRightThrDbnhl,jdbcType=VARCHAR}, - - - abr_bc_right_thr_ms = #{abrBcRightThrMs,jdbcType=VARCHAR}, - - - abr_bc_right_thr_shield_dbnhl = #{abrBcRightThrShieldDbnhl,jdbcType=VARCHAR}, - - - reaction_thr_left_dbnhl = #{reactionThrLeftDbnhl,jdbcType=VARCHAR}, - - - reaction_thr_left_shield_dbnhl = #{reactionThrLeftShieldDbnhl,jdbcType=VARCHAR}, - - - reaction_thr_right_dbnhl = #{reactionThrRightDbnhl,jdbcType=VARCHAR}, - - - reaction_thr_right_shield_dbnhl = #{reactionThrRightShieldDbnhl,jdbcType=VARCHAR}, - - - oae_left_750 = #{oaeLeft750,jdbcType=VARCHAR}, - - - oae_left_1k = #{oaeLeft1k,jdbcType=VARCHAR}, - - - oae_left_2k = #{oaeLeft2k,jdbcType=VARCHAR}, - - - oae_left_3k = #{oaeLeft3k,jdbcType=VARCHAR}, - - - oae_left_4k = #{oaeLeft4k,jdbcType=VARCHAR}, - - - oae_left_6k = #{oaeLeft6k,jdbcType=VARCHAR}, - - - oae_left_8k = #{oaeLeft8k,jdbcType=VARCHAR}, - - - oae_left_10k = #{oaeLeft10k,jdbcType=VARCHAR}, - - - oae_right_750 = #{oaeRight750,jdbcType=VARCHAR}, - - - oae_right_1k = #{oaeRight1k,jdbcType=VARCHAR}, - - - oae_right_2k = #{oaeRight2k,jdbcType=VARCHAR}, - - - oae_right_3k = #{oaeRight3k,jdbcType=VARCHAR}, - - - oae_right_4k = #{oaeRight4k,jdbcType=VARCHAR}, - - - oae_right_6k = #{oaeRight6k,jdbcType=VARCHAR}, - - - oae_right_8k = #{oaeRight8k,jdbcType=VARCHAR}, - - - oae_right_10k = #{oaeRight10k,jdbcType=VARCHAR}, - - - acad_left_curve_type = #{acadLeftCurveType,jdbcType=VARCHAR}, - - - acad_left_drum_cp = #{acadLeftDrumCp,jdbcType=VARCHAR}, - - - acad_left_acco = #{acadLeftAcco,jdbcType=VARCHAR}, - - - acad_left_secondo_volume = #{acadLeftSecondoVolume,jdbcType=VARCHAR}, - - - acad_left_gradient = #{acadLeftGradient,jdbcType=VARCHAR}, - - - acad_left_1K_reflect_thre = #{acadLeft1kReflectThre,jdbcType=VARCHAR}, - - - acad_right_curve_type = #{acadRightCurveType,jdbcType=VARCHAR}, - - - acad_right_drum_cp = #{acadRightDrumCp,jdbcType=VARCHAR}, - - - acad_right_acco = #{acadRightAcco,jdbcType=VARCHAR}, - - - acad_right_secondo_volume = #{acadRightSecondoVolume,jdbcType=VARCHAR}, - - - acad_right_gradient = #{acadRightGradient,jdbcType=VARCHAR}, - - - acad_right_1K_reflect_thre = #{acadRight1kReflectThre,jdbcType=VARCHAR}, - - - sound_refl_left_ipsi_500 = #{soundReflLeftIpsi500,jdbcType=VARCHAR}, - - - sound_refl_left_ipsi_1k = #{soundReflLeftIpsi1k,jdbcType=VARCHAR}, - - - sound_refl_left_ipsi_2k = #{soundReflLeftIpsi2k,jdbcType=VARCHAR}, - - - sound_refl_left_ipsi_4k = #{soundReflLeftIpsi4k,jdbcType=VARCHAR}, - - - sound_refl_left_offsi_500 = #{soundReflLeftOffsi500,jdbcType=VARCHAR}, - - - sound_refl_left_offsi_1k = #{soundReflLeftOffsi1k,jdbcType=VARCHAR}, - - - sound_refl_left_offsi_2k = #{soundReflLeftOffsi2k,jdbcType=VARCHAR}, - - - sound_refl_left_offsi_4k = #{soundReflLeftOffsi4k,jdbcType=VARCHAR}, - - - sound_refl_left_atten = #{soundReflLeftAtten,jdbcType=VARCHAR}, - - - sound_refl_right_ipsi_500 = #{soundReflRightIpsi500,jdbcType=VARCHAR}, - - - sound_refl_right_ipsi_1k = #{soundReflRightIpsi1k,jdbcType=VARCHAR}, - - - sound_refl_right_ipsi_2k = #{soundReflRightIpsi2k,jdbcType=VARCHAR}, - - - sound_refl_right_ipsi_4k = #{soundReflRightIpsi4k,jdbcType=VARCHAR}, - - - sound_refl_right_offsi_500 = #{soundReflRightOffsi500,jdbcType=VARCHAR}, - - - sound_refl_right_offsi_1k = #{soundReflRightOffsi1k,jdbcType=VARCHAR}, - - - sound_refl_right_offsi_2k = #{soundReflRightOffsi2k,jdbcType=VARCHAR}, - - - sound_refl_right_offsi_4k = #{soundReflRightOffsi4k,jdbcType=VARCHAR}, - - - sound_refl_right_atten = #{soundReflRightAtten,jdbcType=VARCHAR}, - - - aabr_left_if_pass = #{aabrLeftIfPass,jdbcType=INTEGER}, - - - aabr_right_if_pass = #{aabrRightIfPass,jdbcType=INTEGER}, - - - assr_left_500 = #{assrLeft500,jdbcType=VARCHAR}, - - - assr_left_1k = #{assrLeft1k,jdbcType=VARCHAR}, - - - assr_left_2k = #{assrLeft2k,jdbcType=VARCHAR}, - - - assr_left_4k = #{assrLeft4k,jdbcType=VARCHAR}, - - - assr_right_500 = #{assrRight500,jdbcType=VARCHAR}, - - - assr_right_1k = #{assrRight1k,jdbcType=VARCHAR}, - - - assr_right_2k = #{assrRight2k,jdbcType=VARCHAR}, - - - assr_right_4k = #{assrRight4k,jdbcType=VARCHAR}, - - - diagn_hand_sugge = #{diagnHandSugge,jdbcType=VARCHAR}, - - - diagn_guide_sugge = #{diagnGuideSugge,jdbcType=VARCHAR}, - - - diagn_doctor_id = #{diagnDoctorId,jdbcType=VARCHAR}, - - - diagn_next_time = #{diagnNextTime,jdbcType=TIMESTAMP}, - - - create_time = #{createTime,jdbcType=TIMESTAMP}, - - - create_id = #{createId,jdbcType=VARCHAR}, - - - modify_id = #{modifyId,jdbcType=VARCHAR}, - - - modify_time = #{modifyTime,jdbcType=TIMESTAMP}, - - - ifdel = #{ifdel,jdbcType=INTEGER}, - - - enalble = #{enalble,jdbcType=INTEGER}, - - - - - - - - - - - - - - - order by ${sort} - - limit #{offset, jdbcType=INTEGER} , #{limit, jdbcType=INTEGER} - - - - - - - - 1 = 1 - - and id = #{id,jdbcType=VARCHAR} - - - and baby_id = #{babyId,jdbcType=VARCHAR} - - - and hospital_id = #{hospitalId,jdbcType=VARCHAR} - - - and diagnose_time = #{diagnoseTime,jdbcType=TIMESTAMP} - - - and high_factor = #{highFactor,jdbcType=VARCHAR} - - - and abr_left_dbnhl = #{abrLeftDbnhl,jdbcType=VARCHAR} - - - and abr_left_l_wave = #{abrLeftLWave,jdbcType=VARCHAR} - - - and abr_left_lll_wave = #{abrLeftLllWave,jdbcType=VARCHAR} - - - and abr_left_V_wave = #{abrLeftVWave,jdbcType=VARCHAR} - - - and abr_left_shield = #{abrLeftShield,jdbcType=VARCHAR} - - - and abr_right_dbnhl = #{abrRightDbnhl,jdbcType=VARCHAR} - - - and abr_right_l_wave = #{abrRightLWave,jdbcType=VARCHAR} - - - and abr_right_lll_wave = #{abrRightLllWave,jdbcType=VARCHAR} - - - and abr_right_V_wave = #{abrRightVWave,jdbcType=VARCHAR} - - - and abr_right_shield = #{abrRightShield,jdbcType=VARCHAR} - - - and abr_thr_left_dbnhl = #{abrThrLeftDbnhl,jdbcType=VARCHAR} - - - and abr_thr_left_ms = #{abrThrLeftMs,jdbcType=VARCHAR} - - - and abr_thr_left_shield_dbnhl = #{abrThrLeftShieldDbnhl,jdbcType=VARCHAR} - - - and abr_thr_right_dbnhl = #{abrThrRightDbnhl,jdbcType=VARCHAR} - - - and abr_thr_right_ms = #{abrThrRightMs,jdbcType=VARCHAR} - - - and abr_thr_right_shield_dbnhl = #{abrThrRightShieldDbnhl,jdbcType=VARCHAR} - - - and abr_bc_left_thr_dbnhl = #{abrBcLeftThrDbnhl,jdbcType=VARCHAR} - - - and abr_bc_left_thr_ms = #{abrBcLeftThrMs,jdbcType=VARCHAR} - - - and abr_bc_left_thr_shield_dbnhl = #{abrBcLeftThrShieldDbnhl,jdbcType=VARCHAR} - - - and abr_bc_right_thr_dbnhl = #{abrBcRightThrDbnhl,jdbcType=VARCHAR} - - - and abr_bc_right_thr_ms = #{abrBcRightThrMs,jdbcType=VARCHAR} - - - and abr_bc_right_thr_shield_dbnhl = #{abrBcRightThrShieldDbnhl,jdbcType=VARCHAR} - - - and reaction_thr_left_dbnhl = #{reactionThrLeftDbnhl,jdbcType=VARCHAR} - - - and reaction_thr_left_shield_dbnhl = #{reactionThrLeftShieldDbnhl,jdbcType=VARCHAR} - - - and reaction_thr_right_dbnhl = #{reactionThrRightDbnhl,jdbcType=VARCHAR} - - - and reaction_thr_right_shield_dbnhl = #{reactionThrRightShieldDbnhl,jdbcType=VARCHAR} - - - and oae_left_750 = #{oaeLeft750,jdbcType=VARCHAR} - - - and oae_left_1k = #{oaeLeft1k,jdbcType=VARCHAR} - - - and oae_left_2k = #{oaeLeft2k,jdbcType=VARCHAR} - - - and oae_left_3k = #{oaeLeft3k,jdbcType=VARCHAR} - - - and oae_left_4k = #{oaeLeft4k,jdbcType=VARCHAR} - - - and oae_left_6k = #{oaeLeft6k,jdbcType=VARCHAR} - - - and oae_left_8k = #{oaeLeft8k,jdbcType=VARCHAR} - - - and oae_left_10k = #{oaeLeft10k,jdbcType=VARCHAR} - - - and oae_right_750 = #{oaeRight750,jdbcType=VARCHAR} - - - and oae_right_1k = #{oaeRight1k,jdbcType=VARCHAR} - - - and oae_right_2k = #{oaeRight2k,jdbcType=VARCHAR} - - - and oae_right_3k = #{oaeRight3k,jdbcType=VARCHAR} - - - and oae_right_4k = #{oaeRight4k,jdbcType=VARCHAR} - - - and oae_right_6k = #{oaeRight6k,jdbcType=VARCHAR} - - - and oae_right_8k = #{oaeRight8k,jdbcType=VARCHAR} - - - and oae_right_10k = #{oaeRight10k,jdbcType=VARCHAR} - - - and acad_left_curve_type = #{acadLeftCurveType,jdbcType=VARCHAR} - - - and acad_left_drum_cp = #{acadLeftDrumCp,jdbcType=VARCHAR} - - - and acad_left_acco = #{acadLeftAcco,jdbcType=VARCHAR} - - - and acad_left_secondo_volume = #{acadLeftSecondoVolume,jdbcType=VARCHAR} - - - and acad_left_gradient = #{acadLeftGradient,jdbcType=VARCHAR} - - - and acad_left_1K_reflect_thre = #{acadLeft1kReflectThre,jdbcType=VARCHAR} - - - and acad_right_curve_type = #{acadRightCurveType,jdbcType=VARCHAR} - - - and acad_right_drum_cp = #{acadRightDrumCp,jdbcType=VARCHAR} - - - and acad_right_acco = #{acadRightAcco,jdbcType=VARCHAR} - - - and acad_right_secondo_volume = #{acadRightSecondoVolume,jdbcType=VARCHAR} - - - and acad_right_gradient = #{acadRightGradient,jdbcType=VARCHAR} - - - and acad_right_1K_reflect_thre = #{acadRight1kReflectThre,jdbcType=VARCHAR} - - - and sound_refl_left_ipsi_500 = #{soundReflLeftIpsi500,jdbcType=VARCHAR} - - - and sound_refl_left_ipsi_1k = #{soundReflLeftIpsi1k,jdbcType=VARCHAR} - - - and sound_refl_left_ipsi_2k = #{soundReflLeftIpsi2k,jdbcType=VARCHAR} - - - and sound_refl_left_ipsi_4k = #{soundReflLeftIpsi4k,jdbcType=VARCHAR} - - - and sound_refl_left_offsi_500 = #{soundReflLeftOffsi500,jdbcType=VARCHAR} - - - and sound_refl_left_offsi_1k = #{soundReflLeftOffsi1k,jdbcType=VARCHAR} - - - and sound_refl_left_offsi_2k = #{soundReflLeftOffsi2k,jdbcType=VARCHAR} - - - and sound_refl_left_offsi_4k = #{soundReflLeftOffsi4k,jdbcType=VARCHAR} - - - and sound_refl_left_atten = #{soundReflLeftAtten,jdbcType=VARCHAR} - - - and sound_refl_right_ipsi_500 = #{soundReflRightIpsi500,jdbcType=VARCHAR} - - - and sound_refl_right_ipsi_1k = #{soundReflRightIpsi1k,jdbcType=VARCHAR} - - - and sound_refl_right_ipsi_2k = #{soundReflRightIpsi2k,jdbcType=VARCHAR} - - - and sound_refl_right_ipsi_4k = #{soundReflRightIpsi4k,jdbcType=VARCHAR} - - - and sound_refl_right_offsi_500 = #{soundReflRightOffsi500,jdbcType=VARCHAR} - - - and sound_refl_right_offsi_1k = #{soundReflRightOffsi1k,jdbcType=VARCHAR} - - - and sound_refl_right_offsi_2k = #{soundReflRightOffsi2k,jdbcType=VARCHAR} - - - and sound_refl_right_offsi_4k = #{soundReflRightOffsi4k,jdbcType=VARCHAR} - - - and sound_refl_right_atten = #{soundReflRightAtten,jdbcType=VARCHAR} - - - and aabr_left_if_pass = #{aabrLeftIfPass,jdbcType=INTEGER} - - - and aabr_right_if_pass = #{aabrRightIfPass,jdbcType=INTEGER} - - - and assr_left_500 = #{assrLeft500,jdbcType=VARCHAR} - - - and assr_left_1k = #{assrLeft1k,jdbcType=VARCHAR} - - - and assr_left_2k = #{assrLeft2k,jdbcType=VARCHAR} - - - and assr_left_4k = #{assrLeft4k,jdbcType=VARCHAR} - - - and assr_right_500 = #{assrRight500,jdbcType=VARCHAR} - - - and assr_right_1k = #{assrRight1k,jdbcType=VARCHAR} - - - and assr_right_2k = #{assrRight2k,jdbcType=VARCHAR} - - - and assr_right_4k = #{assrRight4k,jdbcType=VARCHAR} - - - and diagn_hand_sugge = #{diagnHandSugge,jdbcType=VARCHAR} - - - and diagn_guide_sugge = #{diagnGuideSugge,jdbcType=VARCHAR} - - - and diagn_doctor_id = #{diagnDoctorId,jdbcType=VARCHAR} - - - and diagn_next_time = #{diagnNextTime,jdbcType=TIMESTAMP} - - - and create_time = #{createTime,jdbcType=TIMESTAMP} - - - and create_id = #{createId,jdbcType=VARCHAR} - - - and modify_id = #{modifyId,jdbcType=VARCHAR} - - - and modify_time = #{modifyTime,jdbcType=TIMESTAMP} - - - and ifdel = #{ifdel,jdbcType=INTEGER} - - - and enalble = #{enalble,jdbcType=INTEGER} - - - - - - - - - - - - \ No newline at end of file diff --git a/platform-dal/src/main/java/com/lyms/platform/query/BasicConfigQuery.java b/platform-dal/src/main/java/com/lyms/platform/query/BasicConfigQuery.java index d927f0a..f22a460 100644 --- a/platform-dal/src/main/java/com/lyms/platform/query/BasicConfigQuery.java +++ b/platform-dal/src/main/java/com/lyms/platform/query/BasicConfigQuery.java @@ -17,6 +17,7 @@ public class BasicConfigQuery extends BaseQuery implements IConvertToNativeQuery private List ids; private String parentId; + private List parentIds; private String code; diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java index 760c36a..be44eae 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java @@ -9,10 +9,10 @@ import com.lyms.platform.common.utils.DateUtil; import com.lyms.platform.operate.web.facade.AutoMatchFacade; import com.lyms.platform.operate.web.result.FollowUpListResult; import com.lyms.platform.operate.web.result.FrontEndResult; -import com.lyms.platform.permission.model.FollowUp; -import com.lyms.platform.permission.model.FollowUpQuery; +import com.lyms.platform.permission.model.BabyPatientExtendEarFollowUp; +import com.lyms.platform.permission.model.BabyPatientExtendEarFollowUpQuery; import com.lyms.platform.permission.model.Users; -import com.lyms.platform.permission.service.FollowUpService; +import com.lyms.platform.permission.service.BabyPatientExtendEarFollowUpService; import com.lyms.platform.permission.service.UsersService; import com.lyms.platform.pojo.BabyModel; import org.apache.commons.lang.StringUtils; @@ -35,7 +35,7 @@ import java.util.List; @Controller public class FollowUpController extends BaseController { @Autowired - private FollowUpService followUpService; + private BabyPatientExtendEarFollowUpService babyPatientExtendEarFollowUpService; @Autowired private AutoMatchFacade autoMatchFacade; @Autowired @@ -46,13 +46,13 @@ public class FollowUpController extends BaseController { /** * 鑾峰彇闅忚璁板綍 * - * @param query 闅忚璁板綍瀵硅薄 + * @param query 闅忚璁板綍瀵硅薄 * @param request * @return */ - @RequestMapping(method = RequestMethod.POST, value = "/queryFollowUpList") + @RequestMapping(method = RequestMethod.POST, value = "/queryBabyPatientExtendEarFollowUpList") @ResponseBody - public BaseResponse queryFollowUpList(FollowUpQuery query, HttpServletRequest request){ + public BaseResponse queryBabyPatientExtendEarFollowUpList(BabyPatientExtendEarFollowUpQuery query, HttpServletRequest request) { //鑾峰彇褰撳墠鐧诲綍鐢ㄦ埛ID LoginContext loginState = (LoginContext) request.getAttribute("loginContext"); if (loginState == null) { @@ -60,27 +60,27 @@ public class FollowUpController extends BaseController { } //鍖婚櫌id String hospitalId = autoMatchFacade.getHospitalId(loginState.getId()); - List followUpList = followUpService.queryFollowUp(query); + List BabyPatientExtendEarFollowUpList = babyPatientExtendEarFollowUpService.queryBabyPatientExtendEarFollowUp(query); List fuResult = new ArrayList<>(); - for(FollowUp fu : followUpList){ + for (BabyPatientExtendEarFollowUp fu : BabyPatientExtendEarFollowUpList) { FollowUpListResult res = new FollowUpListResult(); String babyId = fu.getBabyId(); //鏍规嵁babyId鏌ヨ妗f淇℃伅 BabyModel mb = babyService.getOneBabyById(String.valueOf(babyId)); res.setId(fu.getId()); - if(mb!=null){//娌℃湁鎵炬墦鍎跨妗f淇℃伅 + if (mb != null) {//娌℃湁鎵炬墦鍎跨妗f淇℃伅 res.setBabyName(mb.getName()); res.setMommyName(mb.getMname()); - res.setMonthAge(DateUtil.getBabyMonthAge(mb.getBirth(),new Date())); + res.setMonthAge(DateUtil.getBabyMonthAge(mb.getBirth(), new Date())); res.setBirthday(DateUtil.getyyyy_MM_dd(mb.getBirth())); - res.setSex(mb.getSex()==0?"濂":mb.getSex()==1?"鐢":"鏈煡"); + res.setSex(mb.getSex() == 0 ? "濂" : mb.getSex() == 1 ? "鐢" : "鏈煡"); res.setMommnyPhone(mb.getMname()); } res.setDiagnose(fu.getMarkResult()); - res.setIsColse(fu.getIfclose()==1?"缁撴":"鏈粨妗"); + res.setIsColse(fu.getIfclose() == 1 ? "缁撴" : "鏈粨妗"); Users user = usersService.getUsers(Integer.parseInt(fu.getFollowDoctorId())); - if(user!=null){ + if (user != null) { res.setDoctorName(user.getName()); } fuResult.add(res); @@ -95,9 +95,9 @@ public class FollowUpController extends BaseController { * @param request * @return */ - @RequestMapping(method = RequestMethod.POST, value = "/delFollowUp") + @RequestMapping(method = RequestMethod.POST, value = "/delBabyPatientExtendEarFollowUp") @ResponseBody - public BaseResponse delFollowUp(FollowUp obj, HttpServletRequest request) { + public BaseResponse delBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUp obj, HttpServletRequest request) { if (StringUtils.isEmpty(obj.getId())) { return new BaseResponse().setErrorcode(ErrorCodeConstants.PARAMETER_ERROR).setErrormsg("璇蜂紶鍏ヨ淇敼鐨勯殢璁胯褰昳d"); } @@ -111,14 +111,14 @@ public class FollowUpController extends BaseController { } //鍖婚櫌id String hospitalId = autoMatchFacade.getHospitalId(loginState.getId()); - FollowUp follow = followUpService.getFollowUp(obj.getId()); + BabyModel follow = babyService.getOneBabyById(obj.getId()); if (follow == null) {// return new BaseResponse().setErrorcode(ErrorCodeConstants.DATA_EXIST).setErrormsg("娌℃湁鎵惧埌瑕佷慨鏀圭殑鏁版嵁"); } obj.setModifyId(String.valueOf(loginState.getId())); obj.setModifyTime(new Date()); obj.setIfdel(1); - followUpService.updateFollowUp(obj); + babyPatientExtendEarFollowUpService.updateBabyPatientExtendEarFollowUp(obj); return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("鍒犻櫎鎴愬姛"); } @@ -129,9 +129,9 @@ public class FollowUpController extends BaseController { * @param request * @return */ - @RequestMapping(method = RequestMethod.POST, value = "/editFollowUp") + @RequestMapping(method = RequestMethod.POST, value = "/editBabyPatientExtendEarFollowUp") @ResponseBody - public BaseResponse editFollowUp(FollowUp obj, HttpServletRequest request) { + public BaseResponse editBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUp obj, HttpServletRequest request) { if (StringUtils.isEmpty(obj.getId())) { return new BaseResponse().setErrorcode(ErrorCodeConstants.PARAMETER_ERROR).setErrormsg("璇蜂紶鍏ヨ淇敼鐨勯殢璁胯褰昳d"); } @@ -146,13 +146,13 @@ public class FollowUpController extends BaseController { //鍖婚櫌id String hospitalId = autoMatchFacade.getHospitalId(loginState.getId()); - FollowUp follow = followUpService.getFollowUp(obj.getId()); + BabyPatientExtendEarFollowUp follow = babyPatientExtendEarFollowUpService.getBabyPatientExtendEarFollowUp(obj.getId()); if (follow == null) {// return new BaseResponse().setErrorcode(ErrorCodeConstants.DATA_EXIST).setErrormsg("娌℃湁鎵惧埌瑕佷慨鏀圭殑鏁版嵁"); } obj.setModifyId(String.valueOf(loginState.getId())); obj.setModifyTime(new Date()); - followUpService.updateFollowUp(obj); + babyPatientExtendEarFollowUpService.updateBabyPatientExtendEarFollowUp(obj); return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("淇敼鎴愬姛"); } @@ -163,9 +163,9 @@ public class FollowUpController extends BaseController { * @param request * @return */ - @RequestMapping(method = RequestMethod.POST, value = "/saveFollowUp") + @RequestMapping(method = RequestMethod.POST, value = "/saveBabyPatientExtendEarFollowUp") @ResponseBody - public BaseResponse addFollowUp(FollowUp obj, + public BaseResponse addBabyPatientExtendEarFollowUp(BabyPatientExtendEarFollowUp obj, HttpServletRequest request) { // BaseResponse basResp = validata(obj); // if (basResp.getErrorcode() != 0) return basResp; @@ -184,11 +184,11 @@ public class FollowUpController extends BaseController { obj.setHospitalId(hospitalId); obj.setEnalble(1); - followUpService.addFollowUp(obj); + babyPatientExtendEarFollowUpService.addBabyPatientExtendEarFollowUp(obj); return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("鎴愬姛"); } - public BaseResponse validata(FollowUp obj) { + public BaseResponse validata(BabyPatientExtendEarFollowUp obj) { BaseResponse baseResp = new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS); if (obj.getBabyId() == null) {//璇蜂紶鍏ュ効绔ユ。妗圛D diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/HearingDiagnoseController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/HearingDiagnoseController.java index 8ec93f1..45119f5 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/HearingDiagnoseController.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/HearingDiagnoseController.java @@ -1,16 +1,20 @@ package com.lyms.platform.operate.web.controller; import com.lyms.platform.biz.service.BabyService; +import com.lyms.platform.biz.service.BasicConfigService; import com.lyms.platform.common.base.BaseController; import com.lyms.platform.common.base.LoginContext; import com.lyms.platform.common.constants.ErrorCodeConstants; import com.lyms.platform.common.result.BaseResponse; +import com.lyms.platform.common.utils.DateUtil; import com.lyms.platform.operate.web.facade.AutoMatchFacade; import com.lyms.platform.operate.web.result.FrontEndResult; -import com.lyms.platform.permission.model.HearingDiagnose; -import com.lyms.platform.permission.model.HearingDiagnoseQuery; -import com.lyms.platform.permission.service.HearingDiagnoseService; +import com.lyms.platform.operate.web.result.HearingDiagnoseListResult; +import com.lyms.platform.permission.model.BabyPatientExtendEarHearingDiagnose; +import com.lyms.platform.permission.model.BabyPatientExtendEarHearingDiagnoseQuery; +import com.lyms.platform.permission.service.BabyPatientExtendEarHearingDiagnoseService; import com.lyms.platform.pojo.BabyModel; +import com.lyms.platform.query.BasicConfigQuery; import org.apache.commons.lang.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; @@ -19,10 +23,13 @@ import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import javax.servlet.http.HttpServletRequest; +import java.util.ArrayList; +import java.util.Arrays; import java.util.Date; import java.util.List; /** + * 鍚姏璇婃柇 * @auther yangfei * @createTime 2017骞05鏈09鏃 16鏃54鍒 * @discription 璺熻釜鐩稿叧鎺ュ彛 @@ -30,13 +37,15 @@ import java.util.List; @Controller public class HearingDiagnoseController extends BaseController { @Autowired - private HearingDiagnoseService HearingDiagnoseService; + private BabyPatientExtendEarHearingDiagnoseService hearingDiagnoseService; @Autowired private AutoMatchFacade autoMatchFacade; @Autowired private BabyService babyService; + @Autowired + private BasicConfigService basicConfigService; /** - * 鑾峰彇鍚姏璇婃柇璁板綍 + * 鑾峰彇鍚姏璇婃柇璁板綍鍒楄〃 * * @param query 鍚姏璇婃柇璁板綍瀵硅薄 * @param request @@ -44,17 +53,32 @@ public class HearingDiagnoseController extends BaseController { */ @RequestMapping(method = RequestMethod.POST, value = "/queryHearingDiagnoseList") @ResponseBody - public BaseResponse queryHearingDiagnoseList(HearingDiagnoseQuery query, HttpServletRequest request){ + public BaseResponse queryHearingDiagnoseList(BabyPatientExtendEarHearingDiagnoseQuery query, HttpServletRequest request){ //鑾峰彇褰撳墠鐧诲綍鐢ㄦ埛ID LoginContext loginState = (LoginContext) request.getAttribute("loginContext"); if (loginState == null) { return new BaseResponse().setErrorcode(ErrorCodeConstants.TOKEN_EXPIRE).setErrormsg("璇烽噸鏂扮櫥褰"); } //鍖婚櫌id - List hearingDiagnoseList = HearingDiagnoseService.queryHearingDiagnose(query); - for(HearingDiagnose hd : hearingDiagnoseList){ + List hearingDiagnoseList = hearingDiagnoseService.queryBabyPatientExtendEarHearingDiagnose(query); + List hdrList = new ArrayList<>(); + + for(BabyPatientExtendEarHearingDiagnose hd : hearingDiagnoseList){ BabyModel babyModel = babyService.getOneBabyById(hd.getBabyId()); - hd.setBabyModel(babyModel); + HearingDiagnoseListResult hea = new HearingDiagnoseListResult(); + hea.setId(hd.getId()); + hea.setBabyName(babyModel.getName()); + hea.setMommyName(babyModel.getMname()); + hea.setMonthAge(DateUtil.getBabyMonthAge(babyModel.getBirth(),new Date())); + hea.setBirthday(DateUtil.getyyyy_MM_dd(babyModel.getBirth())); + hea.setHdTime(DateUtil.getyyyy_MM_dd(hd.getDiagnoseTime())); + hea.setSex(babyModel.getSex()==0?"濂":babyModel.getSex()==1?"鐢":"鏈煡"); + BasicConfigQuery basicConfigQuery = new BasicConfigQuery(); + basicConfigQuery.setIds(Arrays.asList(hd.getHighFactor().split(","))); + //楂樺嵄鍎跨殑纭畾鍥犵礌 + // hea.setHighRiskCause(); + + hdrList.add(hea); } return FrontEndResult.ini().setData(hearingDiagnoseList).setPageInfo(query.getPageInfo()).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("鏌ヨ鎴愬姛"); } @@ -68,7 +92,7 @@ public class HearingDiagnoseController extends BaseController { */ @RequestMapping(method = RequestMethod.POST, value = "/delHearingDiagnose") @ResponseBody - public BaseResponse delHearingDiagnose(HearingDiagnose obj, HttpServletRequest request) { + public BaseResponse delHearingDiagnose(BabyPatientExtendEarHearingDiagnose obj, HttpServletRequest request) { if (StringUtils.isEmpty(obj.getId())) { return new BaseResponse().setErrorcode(ErrorCodeConstants.PARAMETER_ERROR).setErrormsg("璇蜂紶鍏ヨ淇敼鐨勫惉鍔涜瘖鏂璱d"); } @@ -80,14 +104,14 @@ public class HearingDiagnoseController extends BaseController { } //鍖婚櫌id String hospitalId = autoMatchFacade.getHospitalId(loginState.getId()); - HearingDiagnose hearDiag = HearingDiagnoseService.getHearingDiagnose(obj.getId()); + BabyPatientExtendEarHearingDiagnose hearDiag = hearingDiagnoseService.getBabyPatientExtendEarHearingDiagnose(obj.getId()); if (hearDiag == null) {// return new BaseResponse().setErrorcode(ErrorCodeConstants.DATA_EXIST).setErrormsg("娌℃湁鎵惧埌瑕佷慨鏀圭殑鏁版嵁"); } obj.setModifyId(String.valueOf(loginState.getId())); obj.setModifyTime(new Date()); obj.setIfdel(1); - HearingDiagnoseService.updateHearingDiagnose(obj); + hearingDiagnoseService.updateBabyPatientExtendEarHearingDiagnose(obj); return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("鍒犻櫎鎴愬姛"); } @@ -100,7 +124,7 @@ public class HearingDiagnoseController extends BaseController { */ @RequestMapping(method = RequestMethod.POST, value = "/editHearingDiagnose") @ResponseBody - public BaseResponse editHearingDiagnose(HearingDiagnose obj, HttpServletRequest request) { + public BaseResponse editHearingDiagnose(BabyPatientExtendEarHearingDiagnose obj, HttpServletRequest request) { if (StringUtils.isEmpty(obj.getId())) { return new BaseResponse().setErrorcode(ErrorCodeConstants.PARAMETER_ERROR).setErrormsg("璇蜂紶鍏ヨ淇敼鐨勫惉鍔涜瘖鏂璱d"); } @@ -113,13 +137,13 @@ public class HearingDiagnoseController extends BaseController { //鍖婚櫌id String hospitalId = autoMatchFacade.getHospitalId(loginState.getId()); - HearingDiagnose hearDiag = HearingDiagnoseService.getHearingDiagnose(obj.getId()); + BabyPatientExtendEarHearingDiagnose hearDiag = hearingDiagnoseService.getBabyPatientExtendEarHearingDiagnose(obj.getId()); if (hearDiag == null) {// return new BaseResponse().setErrorcode(ErrorCodeConstants.DATA_EXIST).setErrormsg("娌℃湁鎵惧埌瑕佷慨鏀圭殑鏁版嵁"); } obj.setModifyId(String.valueOf(loginState.getId())); obj.setModifyTime(new Date()); - HearingDiagnoseService.updateHearingDiagnose(obj); + hearingDiagnoseService.updateBabyPatientExtendEarHearingDiagnose(obj); return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("淇敼鎴愬姛"); } @@ -132,7 +156,7 @@ public class HearingDiagnoseController extends BaseController { */ @RequestMapping(method = RequestMethod.POST, value = "/saveHearingDiagnose") @ResponseBody - public BaseResponse addHearingDiagnose(HearingDiagnose obj, + public BaseResponse addHearingDiagnose(BabyPatientExtendEarHearingDiagnose obj, HttpServletRequest request) { //鑾峰彇褰撳墠鐧诲綍鐢ㄦ埛ID LoginContext loginState = (LoginContext) request.getAttribute("loginContext"); @@ -148,7 +172,7 @@ public class HearingDiagnoseController extends BaseController { obj.setHospitalId(hospitalId); obj.setEnalble(1); - HearingDiagnoseService.addHearingDiagnose(obj); + hearingDiagnoseService.addBabyPatientExtendEarHearingDiagnose(obj); return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("鎴愬姛"); } }