-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppointment.java
More file actions
69 lines (54 loc) · 1.48 KB
/
Appointment.java
File metadata and controls
69 lines (54 loc) · 1.48 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
package com.example.fbans.projecthm.utils;
public class Appointment {
int id;
String patname,appotime,mobile,visitType,date;
public Appointment(int id,String patname, String appotime, String mobile, String visitType) {
this.id = id;
this.patname = patname;
this.appotime = appotime;
this.mobile = mobile;
this.visitType = visitType;
}
public Appointment(String patname, String appotime, String visitType, String date) {
this.patname = patname;
this.appotime = appotime;
this.visitType = visitType;
this.date = date;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getPatname() {
return patname;
}
public void setPatname(String patname) {
this.patname = patname;
}
public String getAppotime() {
return appotime;
}
public void setAppotime(String appotime) {
this.appotime = appotime;
}
public String getAge() {
return mobile;
}
public void setAge(String age) {
mobile = age;
}
public String getVisitType() {
return visitType;
}
public void setVisitType(String visitType) {
this.visitType = visitType;
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
}