-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbedinfomodel.java
58 lines (45 loc) · 1.24 KB
/
bedinfomodel.java
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
package com.example.hopeitworks;
public class bedinfomodel {
Integer BedId;
Integer PatientId;
String PatientName;
Integer BedOccupancy;
Integer Age;
public bedinfomodel(Integer BedId, String PatientName , Integer PatientId, Integer BedOccupancy, Integer Age){
this.PatientId= PatientId;
this.PatientName= PatientName;
this.BedId= BedId;
this.BedOccupancy= BedOccupancy;
this.Age= Age;
}
public Integer getBedId() {
return BedId;
}
public void setBedId(Integer bedId) {
BedId = bedId;
}
public Integer getPatientId() {
return PatientId;
}
public void setPatientId(Integer patientId) {
PatientId = patientId;
}
public String getPatientName() {
return PatientName;
}
public void setPatientName(String patientName) {
PatientName = patientName;
}
public Integer getBedOccupancy() {
return BedOccupancy;
}
public void setBedOccupancy(Integer bedOccupancy) {
BedOccupancy = bedOccupancy;
}
public Integer getAge() {
return Age;
}
public void setAge(Integer age) {
Age = age;
}
}