master
童成 2023-10-26 10:32:12 +08:00
parent 24a454b636
commit 2f9385be54
1 changed files with 7 additions and 7 deletions

View File

@ -19,7 +19,7 @@ public class MyFile {
/** /**
* *
*/ */
private Long id; private String mainSymptoms;
/** /**
* *
@ -69,12 +69,12 @@ public class MyFile {
this.myFileId = myFileId; this.myFileId = myFileId;
} }
public Long getId() { public String getMainSymptoms() {
return id; return mainSymptoms;
} }
public void setId(Long id) { public void setMainSymptoms(String mainSymptoms) {
this.id = id; this.mainSymptoms = mainSymptoms;
} }
public String getPresentMedicalHistory() { public String getPresentMedicalHistory() {
@ -144,9 +144,9 @@ public class MyFile {
public 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.myFileId = myFileId;
this.id = id; this.mainSymptoms = mainSymptoms;
this.presentMedicalHistory = presentMedicalHistory; this.presentMedicalHistory = presentMedicalHistory;
this.pastMedicalHistory = pastMedicalHistory; this.pastMedicalHistory = pastMedicalHistory;
this.treatmentExperienceLast = treatmentExperienceLast; this.treatmentExperienceLast = treatmentExperienceLast;