|
@@ -0,0 +1,531 @@
|
|
|
+package com.diagbot.entity;
|
|
|
+
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 有创操作记录
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author zhanghang
|
|
|
+ * @since 2022-02-15
|
|
|
+ */
|
|
|
+public class StrInvasiveOperativeNote 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 LocalDateTime recordDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 手术日期
|
|
|
+ */
|
|
|
+ private LocalDateTime operationDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 开始时间
|
|
|
+ */
|
|
|
+ private LocalDateTime startTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 结束时间
|
|
|
+ */
|
|
|
+ private LocalDateTime endTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 术前诊断
|
|
|
+ */
|
|
|
+ private String preoperationDiagnosis;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 手术名称
|
|
|
+ */
|
|
|
+ private String operationName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 术(中)后诊断
|
|
|
+ */
|
|
|
+ private String postoperativeDiagnosis;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主刀医师
|
|
|
+ */
|
|
|
+ private String operationSurgeon;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 一助
|
|
|
+ */
|
|
|
+ private String firstHelping;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 二助
|
|
|
+ */
|
|
|
+ private String secondHelping;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 麻醉医师
|
|
|
+ */
|
|
|
+ private String narcosisDoctor;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 麻醉方式
|
|
|
+ */
|
|
|
+ private String narcosisType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 切口类别
|
|
|
+ */
|
|
|
+ private String cutType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 病理诊断
|
|
|
+ */
|
|
|
+ private String pathologicalDiagnosis;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否术中植入物
|
|
|
+ */
|
|
|
+ private String isImplants;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 植入物名称
|
|
|
+ */
|
|
|
+ private String implantsName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 出血
|
|
|
+ */
|
|
|
+ private String bloodLoss;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 术中所见
|
|
|
+ */
|
|
|
+ private String intraoperativeView;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 术后注意事项
|
|
|
+ */
|
|
|
+ private String postoperativeNotice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 手术经过及处理
|
|
|
+ */
|
|
|
+ private String operationProcess;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录医生
|
|
|
+ */
|
|
|
+ private String recDoctor;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录时间
|
|
|
+ */
|
|
|
+ private LocalDateTime recDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 审核医生
|
|
|
+ */
|
|
|
+ private String auditDoctor;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 审核时间
|
|
|
+ */
|
|
|
+ private LocalDateTime auditDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 结构化数据
|
|
|
+ */
|
|
|
+ private String wholeData;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否删除
|
|
|
+ */
|
|
|
+ private String isDeleted;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime gmtCreate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录修改时间
|
|
|
+ */
|
|
|
+ private LocalDateTime 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 LocalDateTime getRecordDate() {
|
|
|
+ return recordDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecordDate(LocalDateTime recordDate) {
|
|
|
+ this.recordDate = recordDate;
|
|
|
+ }
|
|
|
+ public LocalDateTime getOperationDate() {
|
|
|
+ return operationDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOperationDate(LocalDateTime operationDate) {
|
|
|
+ this.operationDate = operationDate;
|
|
|
+ }
|
|
|
+ public LocalDateTime getStartTime() {
|
|
|
+ return startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartTime(LocalDateTime startTime) {
|
|
|
+ this.startTime = startTime;
|
|
|
+ }
|
|
|
+ public LocalDateTime getEndTime() {
|
|
|
+ return endTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndTime(LocalDateTime endTime) {
|
|
|
+ this.endTime = endTime;
|
|
|
+ }
|
|
|
+ public String getPreoperationDiagnosis() {
|
|
|
+ return preoperationDiagnosis;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPreoperationDiagnosis(String preoperationDiagnosis) {
|
|
|
+ this.preoperationDiagnosis = preoperationDiagnosis;
|
|
|
+ }
|
|
|
+ public String getOperationName() {
|
|
|
+ return operationName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOperationName(String operationName) {
|
|
|
+ this.operationName = operationName;
|
|
|
+ }
|
|
|
+ public String getPostoperativeDiagnosis() {
|
|
|
+ return postoperativeDiagnosis;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPostoperativeDiagnosis(String postoperativeDiagnosis) {
|
|
|
+ this.postoperativeDiagnosis = postoperativeDiagnosis;
|
|
|
+ }
|
|
|
+ public String getOperationSurgeon() {
|
|
|
+ return operationSurgeon;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOperationSurgeon(String operationSurgeon) {
|
|
|
+ this.operationSurgeon = operationSurgeon;
|
|
|
+ }
|
|
|
+ public String getFirstHelping() {
|
|
|
+ return firstHelping;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFirstHelping(String firstHelping) {
|
|
|
+ this.firstHelping = firstHelping;
|
|
|
+ }
|
|
|
+ public String getSecondHelping() {
|
|
|
+ return secondHelping;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSecondHelping(String secondHelping) {
|
|
|
+ this.secondHelping = secondHelping;
|
|
|
+ }
|
|
|
+ public String getNarcosisDoctor() {
|
|
|
+ return narcosisDoctor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNarcosisDoctor(String narcosisDoctor) {
|
|
|
+ this.narcosisDoctor = narcosisDoctor;
|
|
|
+ }
|
|
|
+ public String getNarcosisType() {
|
|
|
+ return narcosisType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNarcosisType(String narcosisType) {
|
|
|
+ this.narcosisType = narcosisType;
|
|
|
+ }
|
|
|
+ public String getCutType() {
|
|
|
+ return cutType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCutType(String cutType) {
|
|
|
+ this.cutType = cutType;
|
|
|
+ }
|
|
|
+ public String getPathologicalDiagnosis() {
|
|
|
+ return pathologicalDiagnosis;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPathologicalDiagnosis(String pathologicalDiagnosis) {
|
|
|
+ this.pathologicalDiagnosis = pathologicalDiagnosis;
|
|
|
+ }
|
|
|
+ public String getIsImplants() {
|
|
|
+ return isImplants;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsImplants(String isImplants) {
|
|
|
+ this.isImplants = isImplants;
|
|
|
+ }
|
|
|
+ public String getImplantsName() {
|
|
|
+ return implantsName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setImplantsName(String implantsName) {
|
|
|
+ this.implantsName = implantsName;
|
|
|
+ }
|
|
|
+ public String getBloodLoss() {
|
|
|
+ return bloodLoss;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBloodLoss(String bloodLoss) {
|
|
|
+ this.bloodLoss = bloodLoss;
|
|
|
+ }
|
|
|
+ public String getIntraoperativeView() {
|
|
|
+ return intraoperativeView;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIntraoperativeView(String intraoperativeView) {
|
|
|
+ this.intraoperativeView = intraoperativeView;
|
|
|
+ }
|
|
|
+ public String getPostoperativeNotice() {
|
|
|
+ return postoperativeNotice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPostoperativeNotice(String postoperativeNotice) {
|
|
|
+ this.postoperativeNotice = postoperativeNotice;
|
|
|
+ }
|
|
|
+ public String getOperationProcess() {
|
|
|
+ return operationProcess;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOperationProcess(String operationProcess) {
|
|
|
+ this.operationProcess = operationProcess;
|
|
|
+ }
|
|
|
+ public String getRecDoctor() {
|
|
|
+ return recDoctor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecDoctor(String recDoctor) {
|
|
|
+ this.recDoctor = recDoctor;
|
|
|
+ }
|
|
|
+ public LocalDateTime getRecDate() {
|
|
|
+ return recDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecDate(LocalDateTime recDate) {
|
|
|
+ this.recDate = recDate;
|
|
|
+ }
|
|
|
+ public String getAuditDoctor() {
|
|
|
+ return auditDoctor;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAuditDoctor(String auditDoctor) {
|
|
|
+ this.auditDoctor = auditDoctor;
|
|
|
+ }
|
|
|
+ public LocalDateTime getAuditDate() {
|
|
|
+ return auditDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAuditDate(LocalDateTime 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 LocalDateTime getGmtCreate() {
|
|
|
+ return gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
+ this.gmtCreate = gmtCreate;
|
|
|
+ }
|
|
|
+ public LocalDateTime getGmtModified() {
|
|
|
+ return gmtModified;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtModified(LocalDateTime 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 "StrInvasiveOperativeNote{" +
|
|
|
+ "recId=" + recId +
|
|
|
+ ", hospitalId=" + hospitalId +
|
|
|
+ ", behospitalCode=" + behospitalCode +
|
|
|
+ ", name=" + name +
|
|
|
+ ", sex=" + sex +
|
|
|
+ ", age=" + age +
|
|
|
+ ", bedNo=" + bedNo +
|
|
|
+ ", deptName=" + deptName +
|
|
|
+ ", recordDate=" + recordDate +
|
|
|
+ ", operationDate=" + operationDate +
|
|
|
+ ", startTime=" + startTime +
|
|
|
+ ", endTime=" + endTime +
|
|
|
+ ", preoperationDiagnosis=" + preoperationDiagnosis +
|
|
|
+ ", operationName=" + operationName +
|
|
|
+ ", postoperativeDiagnosis=" + postoperativeDiagnosis +
|
|
|
+ ", operationSurgeon=" + operationSurgeon +
|
|
|
+ ", firstHelping=" + firstHelping +
|
|
|
+ ", secondHelping=" + secondHelping +
|
|
|
+ ", narcosisDoctor=" + narcosisDoctor +
|
|
|
+ ", narcosisType=" + narcosisType +
|
|
|
+ ", cutType=" + cutType +
|
|
|
+ ", pathologicalDiagnosis=" + pathologicalDiagnosis +
|
|
|
+ ", isImplants=" + isImplants +
|
|
|
+ ", implantsName=" + implantsName +
|
|
|
+ ", bloodLoss=" + bloodLoss +
|
|
|
+ ", intraoperativeView=" + intraoperativeView +
|
|
|
+ ", postoperativeNotice=" + postoperativeNotice +
|
|
|
+ ", operationProcess=" + operationProcess +
|
|
|
+ ", recDoctor=" + recDoctor +
|
|
|
+ ", recDate=" + recDate +
|
|
|
+ ", auditDoctor=" + auditDoctor +
|
|
|
+ ", auditDate=" + auditDate +
|
|
|
+ ", wholeData=" + wholeData +
|
|
|
+ ", remark=" + remark +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|