|
@@ -3,8 +3,11 @@ 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 lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -14,6 +17,8 @@ import java.io.Serializable;
|
|
|
* @author songxl
|
|
|
* @since 2022-04-21
|
|
|
*/
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
public class MedDefectFeedback implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -27,7 +32,7 @@ public class MedDefectFeedback implements Serializable {
|
|
|
/**
|
|
|
* 医院ID
|
|
|
*/
|
|
|
- private Integer hospitalId;
|
|
|
+ private Long hospitalId;
|
|
|
|
|
|
/**
|
|
|
* 住院科室ID
|
|
@@ -127,12 +132,12 @@ public class MedDefectFeedback implements Serializable {
|
|
|
/**
|
|
|
* 记录创建时间
|
|
|
*/
|
|
|
- private LocalDateTime gmtCreate;
|
|
|
+ private Date gmtCreate;
|
|
|
|
|
|
/**
|
|
|
* 记录修改时间,如果时间是1970年则表示纪录未修改
|
|
|
*/
|
|
|
- private LocalDateTime gmtModified;
|
|
|
+ private Date gmtModified;
|
|
|
|
|
|
/**
|
|
|
* 创建人,0表示无创建人值
|
|
@@ -144,210 +149,5 @@ public class MedDefectFeedback implements Serializable {
|
|
|
*/
|
|
|
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 +
|
|
|
- "}";
|
|
|
- }
|
|
|
}
|