|
@@ -1,7 +1,7 @@
|
|
package com.diagbot.entity;
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import java.time.LocalDateTime;
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
@@ -58,7 +58,7 @@ public class MedConsultationResult implements Serializable {
|
|
/**
|
|
/**
|
|
* 病历日期
|
|
* 病历日期
|
|
*/
|
|
*/
|
|
- private LocalDateTime recordDate;
|
|
|
|
|
|
+ private Date recordDate;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 标题
|
|
* 标题
|
|
@@ -68,7 +68,7 @@ public class MedConsultationResult implements Serializable {
|
|
/**
|
|
/**
|
|
* 入院日期
|
|
* 入院日期
|
|
*/
|
|
*/
|
|
- private LocalDateTime behospitalDate;
|
|
|
|
|
|
+ private Date behospitalDate;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 申请科室
|
|
* 申请科室
|
|
@@ -83,7 +83,7 @@ public class MedConsultationResult implements Serializable {
|
|
/**
|
|
/**
|
|
* 申请日期
|
|
* 申请日期
|
|
*/
|
|
*/
|
|
- private LocalDateTime applyDate;
|
|
|
|
|
|
+ private Date applyDate;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 会诊类别
|
|
* 会诊类别
|
|
@@ -118,7 +118,7 @@ public class MedConsultationResult implements Serializable {
|
|
/**
|
|
/**
|
|
* 会诊到达时间
|
|
* 会诊到达时间
|
|
*/
|
|
*/
|
|
- private LocalDateTime consultationArriveDate;
|
|
|
|
|
|
+ private Date consultationArriveDate;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 记录医生
|
|
* 记录医生
|
|
@@ -128,7 +128,7 @@ public class MedConsultationResult implements Serializable {
|
|
/**
|
|
/**
|
|
* 记录时间
|
|
* 记录时间
|
|
*/
|
|
*/
|
|
- private LocalDateTime recDate;
|
|
|
|
|
|
+ private Date recDate;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 审核医生
|
|
* 审核医生
|
|
@@ -138,7 +138,7 @@ public class MedConsultationResult implements Serializable {
|
|
/**
|
|
/**
|
|
* 审核时间
|
|
* 审核时间
|
|
*/
|
|
*/
|
|
- private LocalDateTime auditDate;
|
|
|
|
|
|
+ private Date auditDate;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 结构化数据
|
|
* 结构化数据
|
|
@@ -158,12 +158,12 @@ public class MedConsultationResult implements Serializable {
|
|
/**
|
|
/**
|
|
* 记录创建时间
|
|
* 记录创建时间
|
|
*/
|
|
*/
|
|
- private LocalDateTime gmtCreate;
|
|
|
|
|
|
+ private Date gmtCreate;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 记录修改时间
|
|
* 记录修改时间
|
|
*/
|
|
*/
|
|
- private LocalDateTime gmtModified;
|
|
|
|
|
|
+ private Date gmtModified;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 创建人
|
|
* 创建人
|
|
@@ -231,11 +231,11 @@ public class MedConsultationResult implements Serializable {
|
|
public void setDeptName(String deptName) {
|
|
public void setDeptName(String deptName) {
|
|
this.deptName = deptName;
|
|
this.deptName = deptName;
|
|
}
|
|
}
|
|
- public LocalDateTime getRecordDate() {
|
|
|
|
|
|
+ public Date getRecordDate() {
|
|
return recordDate;
|
|
return recordDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setRecordDate(LocalDateTime recordDate) {
|
|
|
|
|
|
+ public void setRecordDate(Date recordDate) {
|
|
this.recordDate = recordDate;
|
|
this.recordDate = recordDate;
|
|
}
|
|
}
|
|
public String getRecTitle() {
|
|
public String getRecTitle() {
|
|
@@ -245,11 +245,11 @@ public class MedConsultationResult implements Serializable {
|
|
public void setRecTitle(String recTitle) {
|
|
public void setRecTitle(String recTitle) {
|
|
this.recTitle = recTitle;
|
|
this.recTitle = recTitle;
|
|
}
|
|
}
|
|
- public LocalDateTime getBehospitalDate() {
|
|
|
|
|
|
+ public Date getBehospitalDate() {
|
|
return behospitalDate;
|
|
return behospitalDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setBehospitalDate(LocalDateTime behospitalDate) {
|
|
|
|
|
|
+ public void setBehospitalDate(Date behospitalDate) {
|
|
this.behospitalDate = behospitalDate;
|
|
this.behospitalDate = behospitalDate;
|
|
}
|
|
}
|
|
public String getApplyDept() {
|
|
public String getApplyDept() {
|
|
@@ -266,11 +266,11 @@ public class MedConsultationResult implements Serializable {
|
|
public void setApplyDoctor(String applyDoctor) {
|
|
public void setApplyDoctor(String applyDoctor) {
|
|
this.applyDoctor = applyDoctor;
|
|
this.applyDoctor = applyDoctor;
|
|
}
|
|
}
|
|
- public LocalDateTime getApplyDate() {
|
|
|
|
|
|
+ public Date getApplyDate() {
|
|
return applyDate;
|
|
return applyDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setApplyDate(LocalDateTime applyDate) {
|
|
|
|
|
|
+ public void setApplyDate(Date applyDate) {
|
|
this.applyDate = applyDate;
|
|
this.applyDate = applyDate;
|
|
}
|
|
}
|
|
public String getInviteType() {
|
|
public String getInviteType() {
|
|
@@ -315,11 +315,11 @@ public class MedConsultationResult implements Serializable {
|
|
public void setConsultationOpinions(String consultationOpinions) {
|
|
public void setConsultationOpinions(String consultationOpinions) {
|
|
this.consultationOpinions = consultationOpinions;
|
|
this.consultationOpinions = consultationOpinions;
|
|
}
|
|
}
|
|
- public LocalDateTime getConsultationArriveDate() {
|
|
|
|
|
|
+ public Date getConsultationArriveDate() {
|
|
return consultationArriveDate;
|
|
return consultationArriveDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setConsultationArriveDate(LocalDateTime consultationArriveDate) {
|
|
|
|
|
|
+ public void setConsultationArriveDate(Date consultationArriveDate) {
|
|
this.consultationArriveDate = consultationArriveDate;
|
|
this.consultationArriveDate = consultationArriveDate;
|
|
}
|
|
}
|
|
public String getRecDoctor() {
|
|
public String getRecDoctor() {
|
|
@@ -329,11 +329,11 @@ public class MedConsultationResult implements Serializable {
|
|
public void setRecDoctor(String recDoctor) {
|
|
public void setRecDoctor(String recDoctor) {
|
|
this.recDoctor = recDoctor;
|
|
this.recDoctor = recDoctor;
|
|
}
|
|
}
|
|
- public LocalDateTime getRecDate() {
|
|
|
|
|
|
+ public Date getRecDate() {
|
|
return recDate;
|
|
return recDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setRecDate(LocalDateTime recDate) {
|
|
|
|
|
|
+ public void setRecDate(Date recDate) {
|
|
this.recDate = recDate;
|
|
this.recDate = recDate;
|
|
}
|
|
}
|
|
public String getAuditDoctor() {
|
|
public String getAuditDoctor() {
|
|
@@ -343,11 +343,11 @@ public class MedConsultationResult implements Serializable {
|
|
public void setAuditDoctor(String auditDoctor) {
|
|
public void setAuditDoctor(String auditDoctor) {
|
|
this.auditDoctor = auditDoctor;
|
|
this.auditDoctor = auditDoctor;
|
|
}
|
|
}
|
|
- public LocalDateTime getAuditDate() {
|
|
|
|
|
|
+ public Date getAuditDate() {
|
|
return auditDate;
|
|
return auditDate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setAuditDate(LocalDateTime auditDate) {
|
|
|
|
|
|
+ public void setAuditDate(Date auditDate) {
|
|
this.auditDate = auditDate;
|
|
this.auditDate = auditDate;
|
|
}
|
|
}
|
|
public String getWholeData() {
|
|
public String getWholeData() {
|
|
@@ -371,18 +371,18 @@ public class MedConsultationResult implements Serializable {
|
|
public void setIsDeleted(String isDeleted) {
|
|
public void setIsDeleted(String isDeleted) {
|
|
this.isDeleted = isDeleted;
|
|
this.isDeleted = isDeleted;
|
|
}
|
|
}
|
|
- public LocalDateTime getGmtCreate() {
|
|
|
|
|
|
+ public Date getGmtCreate() {
|
|
return gmtCreate;
|
|
return gmtCreate;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
|
|
|
+ public void setGmtCreate(Date gmtCreate) {
|
|
this.gmtCreate = gmtCreate;
|
|
this.gmtCreate = gmtCreate;
|
|
}
|
|
}
|
|
- public LocalDateTime getGmtModified() {
|
|
|
|
|
|
+ public Date getGmtModified() {
|
|
return gmtModified;
|
|
return gmtModified;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
|
|
|
+ public void setGmtModified(Date gmtModified) {
|
|
this.gmtModified = gmtModified;
|
|
this.gmtModified = gmtModified;
|
|
}
|
|
}
|
|
public String getCreator() {
|
|
public String getCreator() {
|