添加我的档案实体类
parent
0f4a890b58
commit
ca908b9fd9
|
@ -0,0 +1,159 @@
|
||||||
|
package com.four.common.duck.my;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author: tongCheng
|
||||||
|
* @Package: four-common-duck
|
||||||
|
* @ClassName: MyFile
|
||||||
|
* @date: 2023-10-24 15:56
|
||||||
|
* 我的档案
|
||||||
|
**/
|
||||||
|
public class MyFile {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 我的档案id
|
||||||
|
*/
|
||||||
|
private Integer myFileId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主要症状
|
||||||
|
*/
|
||||||
|
private Integer id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 现病史
|
||||||
|
*/
|
||||||
|
private String presentMedicalHistory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 既往病史
|
||||||
|
*/
|
||||||
|
private String pastMedicalHistory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 最后一次治疗经历
|
||||||
|
*/
|
||||||
|
private String treatmentExperienceLast;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 开始时间
|
||||||
|
*/
|
||||||
|
private Date startTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 结束时间
|
||||||
|
*/
|
||||||
|
private Date endTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 治疗过程
|
||||||
|
*/
|
||||||
|
private String therapeuticProcess;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 相关图片
|
||||||
|
*/
|
||||||
|
private String relatedPic;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户id
|
||||||
|
*/
|
||||||
|
private Integer userId;
|
||||||
|
|
||||||
|
public Integer getMyFileId() {
|
||||||
|
return myFileId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMyFileId(Integer myFileId) {
|
||||||
|
this.myFileId = myFileId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(Integer id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPresentMedicalHistory() {
|
||||||
|
return presentMedicalHistory;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPresentMedicalHistory(String presentMedicalHistory) {
|
||||||
|
this.presentMedicalHistory = presentMedicalHistory;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPastMedicalHistory() {
|
||||||
|
return pastMedicalHistory;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPastMedicalHistory(String pastMedicalHistory) {
|
||||||
|
this.pastMedicalHistory = pastMedicalHistory;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTreatmentExperienceLast() {
|
||||||
|
return treatmentExperienceLast;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTreatmentExperienceLast(String treatmentExperienceLast) {
|
||||||
|
this.treatmentExperienceLast = treatmentExperienceLast;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getStartTime() {
|
||||||
|
return startTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStartTime(Date startTime) {
|
||||||
|
this.startTime = startTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getEndTime() {
|
||||||
|
return endTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEndTime(Date endTime) {
|
||||||
|
this.endTime = endTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTherapeuticProcess() {
|
||||||
|
return therapeuticProcess;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTherapeuticProcess(String therapeuticProcess) {
|
||||||
|
this.therapeuticProcess = therapeuticProcess;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRelatedPic() {
|
||||||
|
return relatedPic;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRelatedPic(String relatedPic) {
|
||||||
|
this.relatedPic = relatedPic;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getUserId() {
|
||||||
|
return userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserId(Integer userId) {
|
||||||
|
this.userId = userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public MyFile() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public MyFile(Integer myFileId, Integer id, String presentMedicalHistory, String pastMedicalHistory, String treatmentExperienceLast, Date startTime, Date endTime, String therapeuticProcess, String relatedPic, Integer userId) {
|
||||||
|
this.myFileId = myFileId;
|
||||||
|
this.id = id;
|
||||||
|
this.presentMedicalHistory = presentMedicalHistory;
|
||||||
|
this.pastMedicalHistory = pastMedicalHistory;
|
||||||
|
this.treatmentExperienceLast = treatmentExperienceLast;
|
||||||
|
this.startTime = startTime;
|
||||||
|
this.endTime = endTime;
|
||||||
|
this.therapeuticProcess = therapeuticProcess;
|
||||||
|
this.relatedPic = relatedPic;
|
||||||
|
this.userId = userId;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue