forked from yosefconsolacion/IPIS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMedicalInfo.java
More file actions
67 lines (47 loc) · 1.2 KB
/
Copy pathMedicalInfo.java
File metadata and controls
67 lines (47 loc) · 1.2 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
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Bean;
import java.util.Date;
/**
*
* @author Jeffrey
*/
public class MedicalInfo {
private Date dateAdmitted;
private String initialDiagnosis;
private Date dateDischarge;
private String disposition;
private String room;
public Date getDateAdmitted() {
return dateAdmitted;
}
public void setDateAdmitted(Date dateAdmitted) {
this.dateAdmitted = dateAdmitted;
}
public String getInitialDiagnosis() {
return initialDiagnosis;
}
public void setInitialDiagnosis(String initialDiagnosis) {
this.initialDiagnosis = initialDiagnosis;
}
public Date getDateDischarge() {
return dateDischarge;
}
public void setDateDischarge(Date dateDischarge) {
this.dateDischarge = dateDischarge;
}
public String getDisposition() {
return disposition;
}
public void setDisposition(String disposition) {
this.disposition = disposition;
}
public String getRoom() {
return room;
}
public void setRoom(String room) {
this.room = room;
}
}