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;
|
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;
|
||||||
|
|
Loading…
Reference in New Issue