123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- package com.diagbot.entity;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 病危通知单
- * </p>
- *
- * @author cy
- * @since 2020-10-09
- */
- public class StrIllCritically 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 String recTitle;
- /**
- * 当前诊断
- */
- private String currentDiagnosis;
- /**
- * 病情危重情况
- */
- private String criticalSituation;
- /**
- * 患者签名
- */
- private String patientSign;
- /**
- * 患者签名时间
- */
- private Date patientSignDate;
- /**
- * 医生签名
- */
- private String doctorSign;
- /**
- * 医生签名时间
- */
- private Date doctorSignDate;
- /**
- * 结构化数据
- */
- 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 String getRecTitle() {
- return recTitle;
- }
- public void setRecTitle(String recTitle) {
- this.recTitle = recTitle;
- }
- public String getCurrentDiagnosis() {
- return currentDiagnosis;
- }
- public void setCurrentDiagnosis(String currentDiagnosis) {
- this.currentDiagnosis = currentDiagnosis;
- }
- public String getCriticalSituation() {
- return criticalSituation;
- }
- public void setCriticalSituation(String criticalSituation) {
- this.criticalSituation = criticalSituation;
- }
- public String getPatientSign() {
- return patientSign;
- }
- public void setPatientSign(String patientSign) {
- this.patientSign = patientSign;
- }
- public Date getPatientSignDate() {
- return patientSignDate;
- }
- public void setPatientSignDate(Date patientSignDate) {
- this.patientSignDate = patientSignDate;
- }
- public String getDoctorSign() {
- return doctorSign;
- }
- public void setDoctorSign(String doctorSign) {
- this.doctorSign = doctorSign;
- }
- public Date getDoctorSignDate() {
- return doctorSignDate;
- }
- public void setDoctorSignDate(Date doctorSignDate) {
- this.doctorSignDate = doctorSignDate;
- }
- 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 "StrIllCritically{" +
- "recId=" + recId +
- ", hospitalId=" + hospitalId +
- ", behospitalCode=" + behospitalCode +
- ", name=" + name +
- ", sex=" + sex +
- ", age=" + age +
- ", bedNo=" + bedNo +
- ", deptName=" + deptName +
- ", recordDate=" + recordDate +
- ", recTitle=" + recTitle +
- ", currentDiagnosis=" + currentDiagnosis +
- ", criticalSituation=" + criticalSituation +
- ", patientSign=" + patientSign +
- ", patientSignDate=" + patientSignDate +
- ", doctorSign=" + doctorSign +
- ", doctorSignDate=" + doctorSignDate +
- ", wholeData=" + wholeData +
- ", remark=" + remark +
- ", isDeleted=" + isDeleted +
- ", gmtCreate=" + gmtCreate +
- ", gmtModified=" + gmtModified +
- ", creator=" + creator +
- ", modifier=" + modifier +
- "}";
- }
- }
|