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;
}
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;