健康报告删除

This commit is contained in:
limqhz
2021-03-08 17:30:58 +08:00
parent 8cad890c1b
commit 4247ae6e12
8 changed files with 146 additions and 37 deletions

View File

@@ -15,7 +15,7 @@ public class HealthDoc {
private String docPath;
private Date date;
private Date docDate;
private Integer platformId;
@@ -25,14 +25,14 @@ public class HealthDoc {
private Byte deleted;
public HealthDoc(Integer id, Integer memberId, String docName, String docType, String fileType, String docPath, Date date, Integer platformId, Date createdTime, Date modifiedTime, Byte deleted) {
public HealthDoc(Integer id, Integer memberId, String docName, String docType, String fileType, String docPath, Date docDate, Integer platformId, Date createdTime, Date modifiedTime, Byte deleted) {
this.id = id;
this.memberId = memberId;
this.docName = docName;
this.docType = docType;
this.fileType = fileType;
this.docPath = docPath;
this.date = date;
this.docDate = docDate;
this.platformId = platformId;
this.createdTime = createdTime;
this.modifiedTime = modifiedTime;
@@ -91,12 +91,12 @@ public class HealthDoc {
this.docPath = docPath == null ? null : docPath.trim();
}
public Date getDate() {
return date;
public Date getDocDate() {
return docDate;
}
public void setDate(Date date) {
this.date = date;
public void setDocDate(Date docDate) {
this.docDate = docDate;
}
public Integer getPlatformId() {
@@ -130,4 +130,4 @@ public class HealthDoc {
public void setDeleted(Byte deleted) {
this.deleted = deleted;
}
}
}