|
@@ -2,24 +2,38 @@ package com.lemon.lifecenter.dto;
|
|
|
|
|
|
public class PatientMemoDTO {
|
|
|
|
|
|
- private String memberName;
|
|
|
+ private int patientIdx;
|
|
|
private String contents;
|
|
|
+ private String recordedByName;
|
|
|
+ private String recordedById;
|
|
|
private String createDate;
|
|
|
private int limit;
|
|
|
private int limitMax;
|
|
|
|
|
|
- public String getMemberName() {
|
|
|
- return memberName;
|
|
|
- }
|
|
|
- public void setMemberName(String memberName) {
|
|
|
- this.memberName = memberName;
|
|
|
+ public int getPatientIdx() {
|
|
|
+ return patientIdx;
|
|
|
}
|
|
|
+ public void setPatientIdx(int patientIdx) {
|
|
|
+ this.patientIdx = patientIdx;
|
|
|
+ }
|
|
|
public String getContents() {
|
|
|
return contents;
|
|
|
}
|
|
|
public void setContents(String contents) {
|
|
|
this.contents = contents;
|
|
|
}
|
|
|
+ public String getRecordedByName() {
|
|
|
+ return recordedByName;
|
|
|
+ }
|
|
|
+ public void setRecordedByName(String recordedByName) {
|
|
|
+ this.recordedByName = recordedByName;
|
|
|
+ }
|
|
|
+ public String getRecordedById() {
|
|
|
+ return recordedById;
|
|
|
+ }
|
|
|
+ public void setRecordedById(String recordedById) {
|
|
|
+ this.recordedById = recordedById;
|
|
|
+ }
|
|
|
public String getCreateDate() {
|
|
|
return createDate;
|
|
|
}
|