健康报告保存接口

This commit is contained in:
limqhz
2021-03-08 15:17:40 +08:00
parent 8db822c548
commit 8cad890c1b
13 changed files with 121 additions and 58 deletions

View File

@@ -1,18 +1,12 @@
package com.sv.entity;
import java.io.Serializable;
import java.util.Date;
public class HealthDoc implements Serializable {
public class HealthDoc {
private Integer id;
private Integer memberId;
/**
* 用户昵称
*/
private String nickName;
private String docName;
private String docType;
@@ -21,6 +15,8 @@ public class HealthDoc implements Serializable {
private String docPath;
private Date date;
private Integer platformId;
private Date createdTime;
@@ -29,13 +25,14 @@ public class HealthDoc implements Serializable {
private Byte deleted;
public HealthDoc(Integer id, Integer memberId, String docName, String docType, String fileType, String docPath, Integer platformId, Date createdTime, Date modifiedTime, 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) {
this.id = id;
this.memberId = memberId;
this.docName = docName;
this.docType = docType;
this.fileType = fileType;
this.docPath = docPath;
this.date = date;
this.platformId = platformId;
this.createdTime = createdTime;
this.modifiedTime = modifiedTime;
@@ -62,14 +59,6 @@ public class HealthDoc implements Serializable {
this.memberId = memberId;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
public String getDocName() {
return docName;
}
@@ -102,6 +91,14 @@ public class HealthDoc implements Serializable {
this.docPath = docPath == null ? null : docPath.trim();
}
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
public Integer getPlatformId() {
return platformId;
}
@@ -133,4 +130,4 @@ public class HealthDoc implements Serializable {
public void setDeleted(Byte deleted) {
this.deleted = deleted;
}
}
}