-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatientCleanicReport.java
More file actions
70 lines (56 loc) · 1.88 KB
/
Copy pathPatientCleanicReport.java
File metadata and controls
70 lines (56 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.example.mywebapp;
import java.time.LocalDate;
public class PatientCleanicReport {
private String patientName;
private LocalDate clinicDate; // Changed to LocalDate
private String clinicDetails;
private String assignedStaff;
private String status;
public PatientCleanicReport(String patientName, LocalDate clinicDate, String clinicDetails, String assignedStaff, String status) {
this.patientName = patientName;
this.clinicDate = clinicDate;
this.clinicDetails = clinicDetails;
this.assignedStaff = assignedStaff;
this.status = status;
}
public String getPatientName() {
return patientName;
}
public void setPatientName(String patientName) {
this.patientName = patientName;
}
public LocalDate getClinicDate() {
return clinicDate;
}
public void setClinicDate(LocalDate clinicDate) {
this.clinicDate = clinicDate;
}
public String getClinicDetails() {
return clinicDetails;
}
public void setClinicDetails(String clinicDetails) {
this.clinicDetails = clinicDetails;
}
public String getAssignedStaff() {
return assignedStaff;
}
public void setAssignedStaff(String assignedStaff) {
this.assignedStaff = assignedStaff;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
@Override
public String toString() {
return "PatientCleanicReport{" +
"patientName='" + patientName + '\'' +
", clinicDate=" + clinicDate +
", clinicDetails='" + clinicDetails + '\'' +
", assignedStaff='" + assignedStaff + '\'' +
", status='" + status + '\'' +
'}';
}
}