健康报告dao生成

This commit is contained in:
limqhz
2021-03-07 09:57:34 +08:00
parent 0b651dc87d
commit d35edae11e
6 changed files with 628 additions and 14 deletions

View File

@@ -0,0 +1,122 @@
package com.sv.entity;
import java.util.Date;
public class HealthDoc {
private Integer id;
private Integer memberId;
private String docName;
private String docType;
private String fileType;
private String docPath;
private Integer platformId;
private Date createdTime;
private Date modifiedTime;
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) {
this.id = id;
this.memberId = memberId;
this.docName = docName;
this.docType = docType;
this.fileType = fileType;
this.docPath = docPath;
this.platformId = platformId;
this.createdTime = createdTime;
this.modifiedTime = modifiedTime;
this.deleted = deleted;
}
public HealthDoc() {
super();
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getMemberId() {
return memberId;
}
public void setMemberId(Integer memberId) {
this.memberId = memberId;
}
public String getDocName() {
return docName;
}
public void setDocName(String docName) {
this.docName = docName == null ? null : docName.trim();
}
public String getDocType() {
return docType;
}
public void setDocType(String docType) {
this.docType = docType == null ? null : docType.trim();
}
public String getFileType() {
return fileType;
}
public void setFileType(String fileType) {
this.fileType = fileType == null ? null : fileType.trim();
}
public String getDocPath() {
return docPath;
}
public void setDocPath(String docPath) {
this.docPath = docPath == null ? null : docPath.trim();
}
public Integer getPlatformId() {
return platformId;
}
public void setPlatformId(Integer platformId) {
this.platformId = platformId;
}
public Date getCreatedTime() {
return createdTime;
}
public void setCreatedTime(Date createdTime) {
this.createdTime = createdTime;
}
public Date getModifiedTime() {
return modifiedTime;
}
public void setModifiedTime(Date modifiedTime) {
this.modifiedTime = modifiedTime;
}
public Byte getDeleted() {
return deleted;
}
public void setDeleted(Byte deleted) {
this.deleted = deleted;
}
}