-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstructions.java
More file actions
55 lines (42 loc) · 1.18 KB
/
Instructions.java
File metadata and controls
55 lines (42 loc) · 1.18 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
package com.example.fbans.projecthm.utils;
public class Instructions {
String patname,staffname,roomnum,instruction,id;
public Instructions(String staffname) {
this.staffname = staffname;
}
public Instructions(String patname, String roomnum, String instruction) {
this.patname = patname;
this.roomnum = roomnum;
this.instruction = instruction;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getPatname() {
return patname;
}
public void setPatname(String patname) {
this.patname = patname;
}
public String getStaffname() {
return staffname;
}
public void setStaffname(String staffname) {
this.staffname = staffname;
}
public String getRoomnum() {
return roomnum;
}
public void setRoomnum(String roomnum) {
this.roomnum = roomnum;
}
public String getInstruction() {
return instruction;
}
public void setInstruction(String instruction) {
this.instruction = instruction;
}
}