|
@@ -1,7 +1,7 @@
|
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import java.time.LocalDateTime;
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -58,7 +58,7 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
/**
|
|
|
* 病历日期
|
|
|
*/
|
|
|
- private LocalDateTime recordDate;
|
|
|
+ private Date recordDate;
|
|
|
|
|
|
/**
|
|
|
* 标题
|
|
@@ -68,12 +68,12 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
/**
|
|
|
* 开始时间
|
|
|
*/
|
|
|
- private LocalDateTime startTime;
|
|
|
+ private Date startTime;
|
|
|
|
|
|
/**
|
|
|
* 结束时间
|
|
|
*/
|
|
|
- private LocalDateTime endTime;
|
|
|
+ private Date endTime;
|
|
|
|
|
|
/**
|
|
|
* 输血原因
|
|
@@ -98,7 +98,7 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
/**
|
|
|
* 记录时间
|
|
|
*/
|
|
|
- private LocalDateTime recDate;
|
|
|
+ private Date recDate;
|
|
|
|
|
|
/**
|
|
|
* 审核医生
|
|
@@ -108,7 +108,7 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
/**
|
|
|
* 审核时间
|
|
|
*/
|
|
|
- private LocalDateTime auditDate;
|
|
|
+ private Date auditDate;
|
|
|
|
|
|
/**
|
|
|
* 结构化数据
|
|
@@ -128,12 +128,12 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
/**
|
|
|
* 记录创建时间
|
|
|
*/
|
|
|
- private LocalDateTime gmtCreate;
|
|
|
+ private Date gmtCreate;
|
|
|
|
|
|
/**
|
|
|
* 记录修改时间
|
|
|
*/
|
|
|
- private LocalDateTime gmtModified;
|
|
|
+ private Date gmtModified;
|
|
|
|
|
|
/**
|
|
|
* 创建人
|
|
@@ -201,11 +201,11 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
public void setDeptName(String deptName) {
|
|
|
this.deptName = deptName;
|
|
|
}
|
|
|
- public LocalDateTime getRecordDate() {
|
|
|
+ public Date getRecordDate() {
|
|
|
return recordDate;
|
|
|
}
|
|
|
|
|
|
- public void setRecordDate(LocalDateTime recordDate) {
|
|
|
+ public void setRecordDate(Date recordDate) {
|
|
|
this.recordDate = recordDate;
|
|
|
}
|
|
|
public String getRecTitle() {
|
|
@@ -215,18 +215,18 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
public void setRecTitle(String recTitle) {
|
|
|
this.recTitle = recTitle;
|
|
|
}
|
|
|
- public LocalDateTime getStartTime() {
|
|
|
+ public Date getStartTime() {
|
|
|
return startTime;
|
|
|
}
|
|
|
|
|
|
- public void setStartTime(LocalDateTime startTime) {
|
|
|
+ public void setStartTime(Date startTime) {
|
|
|
this.startTime = startTime;
|
|
|
}
|
|
|
- public LocalDateTime getEndTime() {
|
|
|
+ public Date getEndTime() {
|
|
|
return endTime;
|
|
|
}
|
|
|
|
|
|
- public void setEndTime(LocalDateTime endTime) {
|
|
|
+ public void setEndTime(Date endTime) {
|
|
|
this.endTime = endTime;
|
|
|
}
|
|
|
public String getTransfusionReason() {
|
|
@@ -257,11 +257,11 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
public void setRecDoctor(String recDoctor) {
|
|
|
this.recDoctor = recDoctor;
|
|
|
}
|
|
|
- public LocalDateTime getRecDate() {
|
|
|
+ public Date getRecDate() {
|
|
|
return recDate;
|
|
|
}
|
|
|
|
|
|
- public void setRecDate(LocalDateTime recDate) {
|
|
|
+ public void setRecDate(Date recDate) {
|
|
|
this.recDate = recDate;
|
|
|
}
|
|
|
public String getAuditDoctor() {
|
|
@@ -271,11 +271,11 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
public void setAuditDoctor(String auditDoctor) {
|
|
|
this.auditDoctor = auditDoctor;
|
|
|
}
|
|
|
- public LocalDateTime getAuditDate() {
|
|
|
+ public Date getAuditDate() {
|
|
|
return auditDate;
|
|
|
}
|
|
|
|
|
|
- public void setAuditDate(LocalDateTime auditDate) {
|
|
|
+ public void setAuditDate(Date auditDate) {
|
|
|
this.auditDate = auditDate;
|
|
|
}
|
|
|
public String getWholeData() {
|
|
@@ -299,18 +299,18 @@ public class MedBloodTransfusion implements Serializable {
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
|
this.isDeleted = isDeleted;
|
|
|
}
|
|
|
- public LocalDateTime getGmtCreate() {
|
|
|
+ public Date getGmtCreate() {
|
|
|
return gmtCreate;
|
|
|
}
|
|
|
|
|
|
- public void setGmtCreate(LocalDateTime gmtCreate) {
|
|
|
+ public void setGmtCreate(Date gmtCreate) {
|
|
|
this.gmtCreate = gmtCreate;
|
|
|
}
|
|
|
- public LocalDateTime getGmtModified() {
|
|
|
+ public Date getGmtModified() {
|
|
|
return gmtModified;
|
|
|
}
|
|
|
|
|
|
- public void setGmtModified(LocalDateTime gmtModified) {
|
|
|
+ public void setGmtModified(Date gmtModified) {
|
|
|
this.gmtModified = gmtModified;
|
|
|
}
|
|
|
public String getCreator() {
|