master
parent
24a454b636
commit
2f9385be54
|
@ -19,7 +19,7 @@ public class MyFile {
|
|||
/**
|
||||
* 主要症状
|
||||
*/
|
||||
private Long id;
|
||||
private String mainSymptoms;
|
||||
|
||||
/**
|
||||
* 现病史
|
||||
|
@ -69,12 +69,12 @@ public class MyFile {
|
|||
this.myFileId = myFileId;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
public String getMainSymptoms() {
|
||||
return mainSymptoms;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
public void setMainSymptoms(String mainSymptoms) {
|
||||
this.mainSymptoms = mainSymptoms;
|
||||
}
|
||||
|
||||
public String getPresentMedicalHistory() {
|
||||
|
@ -144,9 +144,9 @@ public class MyFile {
|
|||
public MyFile() {
|
||||
}
|
||||
|
||||
public MyFile(Long myFileId, Long id, String presentMedicalHistory, String pastMedicalHistory, String treatmentExperienceLast, Date startTime, Date endTime, String therapeuticProcess, String relatedPic, Long userId) {
|
||||
public MyFile(Long myFileId, String mainSymptoms, String presentMedicalHistory, String pastMedicalHistory, String treatmentExperienceLast, Date startTime, Date endTime, String therapeuticProcess, String relatedPic, Long userId) {
|
||||
this.myFileId = myFileId;
|
||||
this.id = id;
|
||||
this.mainSymptoms = mainSymptoms;
|
||||
this.presentMedicalHistory = presentMedicalHistory;
|
||||
this.pastMedicalHistory = pastMedicalHistory;
|
||||
this.treatmentExperienceLast = treatmentExperienceLast;
|
||||
|
|
Loading…
Reference in New Issue