|
@@ -0,0 +1,353 @@
|
|
|
+package com.diagbot.entity;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 缺陷反馈表
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author songxl
|
|
|
+ * @since 2022-04-21
|
|
|
+ */
|
|
|
+public class MedDefectFeedback implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 医院ID
|
|
|
+ */
|
|
|
+ private Integer hospitalId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 住院科室ID
|
|
|
+ */
|
|
|
+ private String deptId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 住院科室名称
|
|
|
+ */
|
|
|
+ private String deptName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 病人住院ID
|
|
|
+ */
|
|
|
+ private String behospitalCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 姓名
|
|
|
+ */
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 条目ID
|
|
|
+ */
|
|
|
+ private Long casesEntryId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 提示信息
|
|
|
+ */
|
|
|
+ private String qcresultDetailMsg;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 人工修改分值
|
|
|
+ */
|
|
|
+ private BigDecimal qcresultDetaiScore;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 模块id
|
|
|
+ */
|
|
|
+ private Long modeId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 模块名称
|
|
|
+ */
|
|
|
+ private String modeName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 反馈说明
|
|
|
+ */
|
|
|
+ private String explainInfo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作类型 1:修改|2:删除|3:新增已有|4:新增缺失|5:恢复
|
|
|
+ */
|
|
|
+ private String operationType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发送人编号
|
|
|
+ */
|
|
|
+ private String senderCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发送人姓名
|
|
|
+ */
|
|
|
+ private String senderName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 接收人编号
|
|
|
+ */
|
|
|
+ private String receiverCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 接收人姓名
|
|
|
+ */
|
|
|
+ private String receiverName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 抄送人编号集合
|
|
|
+ */
|
|
|
+ private String ccCodes;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 抄送人姓名集合
|
|
|
+ */
|
|
|
+ private String ccNames;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 状态 0:待确认|1:已确认
|
|
|
+ */
|
|
|
+ private String status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否删除,N:未删除,Y:删除
|
|
|
+ */
|
|
|
+ private String isDeleted;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录创建时间
|
|
|
+ */
|
|
|
+ private LocalDateTime gmtCreate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
+ */
|
|
|
+ private LocalDateTime gmtModified;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人,0表示无创建人值
|
|
|
+ */
|
|
|
+ private String creator;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人,如果为0则表示纪录未修改
|
|
|
+ */
|
|
|
+ private String modifier;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+ public Integer getHospitalId() {
|
|
|
+ return hospitalId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHospitalId(Integer hospitalId) {
|
|
|
+ this.hospitalId = hospitalId;
|
|
|
+ }
|
|
|
+ public String getDeptId() {
|
|
|
+ return deptId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeptId(String deptId) {
|
|
|
+ this.deptId = deptId;
|
|
|
+ }
|
|
|
+ public String getDeptName() {
|
|
|
+ return deptName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeptName(String deptName) {
|
|
|
+ this.deptName = deptName;
|
|
|
+ }
|
|
|
+ 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 Long getCasesEntryId() {
|
|
|
+ return casesEntryId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCasesEntryId(Long casesEntryId) {
|
|
|
+ this.casesEntryId = casesEntryId;
|
|
|
+ }
|
|
|
+ public String getQcresultDetailMsg() {
|
|
|
+ return qcresultDetailMsg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQcresultDetailMsg(String qcresultDetailMsg) {
|
|
|
+ this.qcresultDetailMsg = qcresultDetailMsg;
|
|
|
+ }
|
|
|
+ public BigDecimal getQcresultDetaiScore() {
|
|
|
+ return qcresultDetaiScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQcresultDetaiScore(BigDecimal qcresultDetaiScore) {
|
|
|
+ this.qcresultDetaiScore = qcresultDetaiScore;
|
|
|
+ }
|
|
|
+ public Long getModeId() {
|
|
|
+ return modeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModeId(Long modeId) {
|
|
|
+ this.modeId = modeId;
|
|
|
+ }
|
|
|
+ public String getModeName() {
|
|
|
+ return modeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModeName(String modeName) {
|
|
|
+ this.modeName = modeName;
|
|
|
+ }
|
|
|
+ public String getExplainInfo() {
|
|
|
+ return explainInfo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExplainInfo(String explainInfo) {
|
|
|
+ this.explainInfo = explainInfo;
|
|
|
+ }
|
|
|
+ public String getOperationType() {
|
|
|
+ return operationType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOperationType(String operationType) {
|
|
|
+ this.operationType = operationType;
|
|
|
+ }
|
|
|
+ public String getSenderCode() {
|
|
|
+ return senderCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSenderCode(String senderCode) {
|
|
|
+ this.senderCode = senderCode;
|
|
|
+ }
|
|
|
+ public String getSenderName() {
|
|
|
+ return senderName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSenderName(String senderName) {
|
|
|
+ this.senderName = senderName;
|
|
|
+ }
|
|
|
+ public String getReceiverCode() {
|
|
|
+ return receiverCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReceiverCode(String receiverCode) {
|
|
|
+ this.receiverCode = receiverCode;
|
|
|
+ }
|
|
|
+ public String getReceiverName() {
|
|
|
+ return receiverName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReceiverName(String receiverName) {
|
|
|
+ this.receiverName = receiverName;
|
|
|
+ }
|
|
|
+ public String getCcCodes() {
|
|
|
+ return ccCodes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCcCodes(String ccCodes) {
|
|
|
+ this.ccCodes = ccCodes;
|
|
|
+ }
|
|
|
+ public String getCcNames() {
|
|
|
+ return ccNames;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCcNames(String ccNames) {
|
|
|
+ this.ccNames = ccNames;
|
|
|
+ }
|
|
|
+ public String getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(String status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+ 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 "MedDefectFeedback{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", hospitalId=" + hospitalId +
|
|
|
+ ", deptId=" + deptId +
|
|
|
+ ", deptName=" + deptName +
|
|
|
+ ", behospitalCode=" + behospitalCode +
|
|
|
+ ", name=" + name +
|
|
|
+ ", casesEntryId=" + casesEntryId +
|
|
|
+ ", qcresultDetailMsg=" + qcresultDetailMsg +
|
|
|
+ ", qcresultDetaiScore=" + qcresultDetaiScore +
|
|
|
+ ", modeId=" + modeId +
|
|
|
+ ", modeName=" + modeName +
|
|
|
+ ", explainInfo=" + explainInfo +
|
|
|
+ ", operationType=" + operationType +
|
|
|
+ ", senderCode=" + senderCode +
|
|
|
+ ", senderName=" + senderName +
|
|
|
+ ", receiverCode=" + receiverCode +
|
|
|
+ ", receiverName=" + receiverName +
|
|
|
+ ", ccCodes=" + ccCodes +
|
|
|
+ ", ccNames=" + ccNames +
|
|
|
+ ", status=" + status +
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", creator=" + creator +
|
|
|
+ ", modifier=" + modifier +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|