修改资讯表信息
parent
b663b208b5
commit
127c351e48
|
@ -68,6 +68,8 @@ public class MyFile {
|
|||
*/
|
||||
private Long userId;
|
||||
|
||||
private String[] StringBuilder;
|
||||
|
||||
public Long getMyFileId() {
|
||||
return myFileId;
|
||||
}
|
||||
|
@ -148,10 +150,18 @@ public class MyFile {
|
|||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String[] getStringBuilder() {
|
||||
return StringBuilder;
|
||||
}
|
||||
|
||||
public void setStringBuilder(String[] stringBuilder) {
|
||||
StringBuilder = stringBuilder;
|
||||
}
|
||||
|
||||
public MyFile() {
|
||||
}
|
||||
|
||||
public MyFile(Long myFileId, String mainSymptoms, 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, String[] stringBuilder) {
|
||||
this.myFileId = myFileId;
|
||||
this.mainSymptoms = mainSymptoms;
|
||||
this.presentMedicalHistory = presentMedicalHistory;
|
||||
|
@ -162,5 +172,6 @@ public class MyFile {
|
|||
this.therapeuticProcess = therapeuticProcess;
|
||||
this.relatedPic = relatedPic;
|
||||
this.userId = userId;
|
||||
StringBuilder = stringBuilder;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue