123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430 |
- package com.diagbot.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 会诊结果单
- * </p>
- *
- * @author cy
- * @since 2020-09-22
- */
- @TableName("med_consultation_result")
- public class MedConsultationResult implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 记录编号
- */
- private String recId;
- /**
- * 医院ID
- */
- private Long hospitalId;
- /**
- * 病历号
- */
- private String behospitalCode;
- /**
- * 姓名
- */
- private String name;
- /**
- * 性别
- */
- private String sex;
- /**
- * 年龄
- */
- private String age;
- /**
- * 床号
- */
- private String bedNo;
- /**
- * 科别
- */
- private String deptName;
- /**
- * 病历日期
- */
- private Date recordDate;
- /**
- * 入院日期
- */
- private Date behospitalDate;
- /**
- * 申请科室
- */
- private String applyDept;
- /**
- * 申请医生
- */
- private String applyDoctor;
- /**
- * 申请日期
- */
- private Date applyDate;
- /**
- * 会诊类别
- */
- private String inviteType;
- /**
- * 会诊科室
- */
- private String inviteDept;
- /**
- * 会诊医生
- */
- private String inviteDoctor;
- /**
- * 当前诊断
- */
- private String currentDiagnosis;
- /**
- * 会诊目的
- */
- private String consultationPurpose;
- /**
- * 会诊意见
- */
- private String consultationOpinions;
- /**
- * 会诊到达时间
- */
- private Date consultationArriveDate;
- /**
- * 记录医生
- */
- private String recDoctor;
- /**
- * 记录时间
- */
- private Date recDate;
- /**
- * 审核医生
- */
- private String auditDoctor;
- /**
- * 审核时间
- */
- private Date auditDate;
- /**
- * 结构化数据
- */
- private String wholeData;
- /**
- * 备注
- */
- private String remark;
- /**
- * 是否删除
- */
- private String isDeleted;
- /**
- * 记录创建时间
- */
- private Date gmtCreate;
- /**
- * 记录修改时间
- */
- private Date gmtModified;
- /**
- * 创建人
- */
- private String creator;
- /**
- * 修改人
- */
- private String modifier;
- public String getRecId() {
- return recId;
- }
- public void setRecId(String recId) {
- this.recId = recId;
- }
- public Long getHospitalId() {
- return hospitalId;
- }
- public void setHospitalId(Long hospitalId) {
- this.hospitalId = hospitalId;
- }
- public String getBehospitalCode() {
- return behospitalCode;
- }
- public void setBehospitalCode(String behospitalCode) {
- this.behospitalCode = behospitalCode;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getSex() {
- return sex;
- }
- public void setSex(String sex) {
- this.sex = sex;
- }
- public String getAge() {
- return age;
- }
- public void setAge(String age) {
- this.age = age;
- }
- public String getBedNo() {
- return bedNo;
- }
- public void setBedNo(String bedNo) {
- this.bedNo = bedNo;
- }
- public String getDeptName() {
- return deptName;
- }
- public void setDeptName(String deptName) {
- this.deptName = deptName;
- }
- public Date getRecordDate() {
- return recordDate;
- }
- public void setRecordDate(Date recordDate) {
- this.recordDate = recordDate;
- }
- public Date getBehospitalDate() {
- return behospitalDate;
- }
- public void setBehospitalDate(Date behospitalDate) {
- this.behospitalDate = behospitalDate;
- }
- public String getApplyDept() {
- return applyDept;
- }
- public void setApplyDept(String applyDept) {
- this.applyDept = applyDept;
- }
- public String getApplyDoctor() {
- return applyDoctor;
- }
- public void setApplyDoctor(String applyDoctor) {
- this.applyDoctor = applyDoctor;
- }
- public Date getApplyDate() {
- return applyDate;
- }
- public void setApplyDate(Date applyDate) {
- this.applyDate = applyDate;
- }
- public String getInviteType() {
- return inviteType;
- }
- public void setInviteType(String inviteType) {
- this.inviteType = inviteType;
- }
- public String getInviteDept() {
- return inviteDept;
- }
- public void setInviteDept(String inviteDept) {
- this.inviteDept = inviteDept;
- }
- public String getInviteDoctor() {
- return inviteDoctor;
- }
- public void setInviteDoctor(String inviteDoctor) {
- this.inviteDoctor = inviteDoctor;
- }
- public String getCurrentDiagnosis() {
- return currentDiagnosis;
- }
- public void setCurrentDiagnosis(String currentDiagnosis) {
- this.currentDiagnosis = currentDiagnosis;
- }
- public String getConsultationPurpose() {
- return consultationPurpose;
- }
- public void setConsultationPurpose(String consultationPurpose) {
- this.consultationPurpose = consultationPurpose;
- }
- public String getConsultationOpinions() {
- return consultationOpinions;
- }
- public void setConsultationOpinions(String consultationOpinions) {
- this.consultationOpinions = consultationOpinions;
- }
- public Date getConsultationArriveDate() {
- return consultationArriveDate;
- }
- public void setConsultationArriveDate(Date consultationArriveDate) {
- this.consultationArriveDate = consultationArriveDate;
- }
- public String getRecDoctor() {
- return recDoctor;
- }
- public void setRecDoctor(String recDoctor) {
- this.recDoctor = recDoctor;
- }
- public Date getRecDate() {
- return recDate;
- }
- public void setRecDate(Date recDate) {
- this.recDate = recDate;
- }
- public String getAuditDoctor() {
- return auditDoctor;
- }
- public void setAuditDoctor(String auditDoctor) {
- this.auditDoctor = auditDoctor;
- }
- public Date getAuditDate() {
- return auditDate;
- }
- public void setAuditDate(Date auditDate) {
- this.auditDate = auditDate;
- }
- public String getWholeData() {
- return wholeData;
- }
- public void setWholeData(String wholeData) {
- this.wholeData = wholeData;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public String getIsDeleted() {
- return isDeleted;
- }
- public void setIsDeleted(String isDeleted) {
- this.isDeleted = isDeleted;
- }
- public Date getGmtCreate() {
- return gmtCreate;
- }
- public void setGmtCreate(Date gmtCreate) {
- this.gmtCreate = gmtCreate;
- }
- public Date getGmtModified() {
- return gmtModified;
- }
- public void setGmtModified(Date gmtModified) {
- this.gmtModified = gmtModified;
- }
- public String getCreator() {
- return creator;
- }
- public void setCreator(String creator) {
- this.creator = creator;
- }
- public String getModifier() {
- return modifier;
- }
- public void setModifier(String modifier) {
- this.modifier = modifier;
- }
- @Override
- public String toString() {
- return "MedConsultationResult{" +
- "recId=" + recId +
- ", hospitalId=" + hospitalId +
- ", behospitalCode=" + behospitalCode +
- ", name=" + name +
- ", sex=" + sex +
- ", age=" + age +
- ", bedNo=" + bedNo +
- ", deptName=" + deptName +
- ", recordDate=" + recordDate +
- ", behospitalDate=" + behospitalDate +
- ", applyDept=" + applyDept +
- ", applyDoctor=" + applyDoctor +
- ", applyDate=" + applyDate +
- ", inviteType=" + inviteType +
- ", inviteDept=" + inviteDept +
- ", inviteDoctor=" + inviteDoctor +
- ", currentDiagnosis=" + currentDiagnosis +
- ", consultationPurpose=" + consultationPurpose +
- ", consultationOpinions=" + consultationOpinions +
- ", consultationArriveDate=" + consultationArriveDate +
- ", recDoctor=" + recDoctor +
- ", recDate=" + recDate +
- ", auditDoctor=" + auditDoctor +
- ", auditDate=" + auditDate +
- ", wholeData=" + wholeData +
- ", remark=" + remark +
- ", isDeleted=" + isDeleted +
- ", gmtCreate=" + gmtCreate +
- ", gmtModified=" + gmtModified +
- ", creator=" + creator +
- ", modifier=" + modifier +
- "}";
- }
- }
|