|
@@ -1,5 +1,14 @@
|
|
|
package com.diagbot.entity;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
|
|
@@ -8,537 +17,162 @@ import java.util.Date;
|
|
|
* 手术记录
|
|
|
* </p>
|
|
|
*
|
|
|
- * @author cy
|
|
|
- * @since 2020-10-09
|
|
|
+ * @author wanghn
|
|
|
+ * @since 2024-09-26
|
|
|
*/
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("str_operative_note")
|
|
|
+@ApiModel(value="StrOperativeNote对象", description="手术记录")
|
|
|
public class StrOperativeNote implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /**
|
|
|
- * 记录编号
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "记录编号")
|
|
|
+ @TableId(value = "rec_id", type = IdType.INPUT)
|
|
|
private String recId;
|
|
|
|
|
|
- /**
|
|
|
- * 医院ID
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "医院ID")
|
|
|
private Long hospitalId;
|
|
|
|
|
|
- /**
|
|
|
- * 病历号
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "病历号")
|
|
|
private String behospitalCode;
|
|
|
|
|
|
- /**
|
|
|
- * 姓名
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "姓名")
|
|
|
private String name;
|
|
|
|
|
|
- /**
|
|
|
- * 性别
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "性别")
|
|
|
private String sex;
|
|
|
|
|
|
- /**
|
|
|
- * 年龄
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "年龄")
|
|
|
private String age;
|
|
|
|
|
|
- /**
|
|
|
- * 床号
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "床号")
|
|
|
private String bedNo;
|
|
|
|
|
|
- /**
|
|
|
- * 科别
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "科别")
|
|
|
private String deptName;
|
|
|
|
|
|
- /**
|
|
|
- * 病历日期
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "病历日期")
|
|
|
private Date recordDate;
|
|
|
|
|
|
- /**
|
|
|
- * 标题
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "标题")
|
|
|
private String recTitle;
|
|
|
|
|
|
- /**
|
|
|
- * 手术日期
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "手术日期")
|
|
|
private Date operationDate;
|
|
|
|
|
|
- /**
|
|
|
- * 开始时间
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "开始时间")
|
|
|
private Date startTime;
|
|
|
|
|
|
- /**
|
|
|
- * 结束时间
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "结束时间")
|
|
|
private Date endTime;
|
|
|
|
|
|
- /**
|
|
|
- * 术前诊断
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "术前诊断")
|
|
|
private String preoperationDiagnosis;
|
|
|
|
|
|
- /**
|
|
|
- * 手术名称
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "手术名称")
|
|
|
private String operationName;
|
|
|
|
|
|
- /**
|
|
|
- * 术(中)后诊断
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "术(中)后诊断")
|
|
|
private String postoperativeDiagnosis;
|
|
|
|
|
|
- /**
|
|
|
- * 主刀医师
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "主刀医师")
|
|
|
private String operationSurgeon;
|
|
|
|
|
|
- /**
|
|
|
- * 一助
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "一助")
|
|
|
private String firstHelping;
|
|
|
|
|
|
- /**
|
|
|
- * 二助
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "二助")
|
|
|
private String secondHelping;
|
|
|
|
|
|
- /**
|
|
|
- * 麻醉医师
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "麻醉医师")
|
|
|
private String narcosisDoctor;
|
|
|
|
|
|
- /**
|
|
|
- * 麻醉方式
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "麻醉方式")
|
|
|
private String narcosisType;
|
|
|
|
|
|
- /**
|
|
|
- * 切口类别
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "切口类别")
|
|
|
private String cutType;
|
|
|
|
|
|
- /**
|
|
|
- * 病理诊断
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "病理(冰冻)诊断")
|
|
|
private String pathologicalDiagnosis;
|
|
|
|
|
|
- /**
|
|
|
- * 是否术中植入物
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "是否术中植入物")
|
|
|
private String isImplants;
|
|
|
|
|
|
- /**
|
|
|
- * 植入物名称
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "植入物名称")
|
|
|
private String implantsName;
|
|
|
|
|
|
- /**
|
|
|
- * 出血
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "出血")
|
|
|
private String bloodLoss;
|
|
|
|
|
|
- /**
|
|
|
- * 术中所见
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "术中所见")
|
|
|
private String intraoperativeView;
|
|
|
|
|
|
- /**
|
|
|
- * 术后注意事项
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "术后注意事项")
|
|
|
private String postoperativeNotice;
|
|
|
|
|
|
- /**
|
|
|
- * 手术经过及处理
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "手术经过及处理")
|
|
|
private String operationProcess;
|
|
|
|
|
|
- /**
|
|
|
- * 记录医生
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "记录医生")
|
|
|
private String recDoctor;
|
|
|
|
|
|
- /**
|
|
|
- * 记录时间
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "记录时间")
|
|
|
private Date recDate;
|
|
|
|
|
|
- /**
|
|
|
- * 审核医生
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "审核医生")
|
|
|
private String auditDoctor;
|
|
|
|
|
|
- /**
|
|
|
- * 审核时间
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "审核时间")
|
|
|
private Date auditDate;
|
|
|
|
|
|
- /**
|
|
|
- * 结构化数据
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "结构化数据")
|
|
|
private String wholeData;
|
|
|
|
|
|
- /**
|
|
|
- * 备注
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
private String remark;
|
|
|
|
|
|
- /**
|
|
|
- * 是否删除
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "是否删除")
|
|
|
private String isDeleted;
|
|
|
|
|
|
- /**
|
|
|
- * 记录创建时间
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "记录创建时间")
|
|
|
private Date gmtCreate;
|
|
|
|
|
|
- /**
|
|
|
- * 记录修改时间
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "记录修改时间")
|
|
|
private Date gmtModified;
|
|
|
|
|
|
- /**
|
|
|
- * 创建人
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "创建人")
|
|
|
private String creator;
|
|
|
|
|
|
- /**
|
|
|
- * 修改人
|
|
|
- */
|
|
|
+ @ApiModelProperty(value = "修改人")
|
|
|
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 Date getOperationDate() {
|
|
|
- return operationDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOperationDate(Date operationDate) {
|
|
|
- this.operationDate = operationDate;
|
|
|
- }
|
|
|
- public Date getStartTime() {
|
|
|
- return startTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStartTime(Date startTime) {
|
|
|
- this.startTime = startTime;
|
|
|
- }
|
|
|
- public Date getEndTime() {
|
|
|
- return endTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setEndTime(Date 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 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 "StrOperativeNote{" +
|
|
|
- "recId=" + recId +
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
- ", behospitalCode=" + behospitalCode +
|
|
|
- ", name=" + name +
|
|
|
- ", sex=" + sex +
|
|
|
- ", age=" + age +
|
|
|
- ", bedNo=" + bedNo +
|
|
|
- ", deptName=" + deptName +
|
|
|
- ", recordDate=" + recordDate +
|
|
|
- ", recTitle=" + recTitle +
|
|
|
- ", 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 +
|
|
|
- "}";
|
|
|
- }
|
|
|
+ @ApiModelProperty(value = "入院时间")
|
|
|
+ private Date behospitalDate;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "手术时数")
|
|
|
+ private String operationTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "处理标本")
|
|
|
+ private String specimen;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "输血情况")
|
|
|
+ private String transfusion;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "红细胞")
|
|
|
+ private String redBlood;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "血小板")
|
|
|
+ private String platelet;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "血浆")
|
|
|
+ private String Plasma;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "全血")
|
|
|
+ private String wholeBlood;
|
|
|
+
|
|
|
+
|
|
|
}
|