-
Notifications
You must be signed in to change notification settings - Fork 0
/
Patient.java
130 lines (104 loc) · 2.77 KB
/
Patient.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package com.example.healthone;
/**
* Created by Aditya on 27-09-2016.
*/
public class Patient {
String patient_id;
String password;
String first;
String last;
String age;
String sex;
String contact_number;;
String address;
String blood_group;
String height;
String weight;
String email;
public String getPatient_id() {
return patient_id;
}
public void setPatient_id(String patient_id) {
this.patient_id = patient_id;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getFirst() {
return first;
}
public void setFirst(String first) {
this.first = first;
}
public String getLast() {
return last;
}
public void setLast(String last) {
this.last = last;
}
public String getAge() {
return age;
}
public void setAge(String age) {
this.age = age;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getContact_number() {
return contact_number;
}
public void setContact_number(String contact_number) {
this.contact_number = contact_number;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getBlood_group() {
return blood_group;
}
public void setBlood_group(String blood_group) {
this.blood_group = blood_group;
}
public String getHeight() {
return height;
}
public void setHeight(String height) {
this.height = height;
}
public String getWeight() {
return weight;
}
public void setWeight(String weight) {
this.weight = weight;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public Patient(String patient_id, String password, String first, String last, String age, String sex, String contact_number, String address, String blood_group, String height, String weight, String email) {
this.patient_id = patient_id;
this.password = password;
this.first = first;
this.last = last;
this.age = age;
this.sex = sex;
this.contact_number = contact_number;
this.address = address;
this.blood_group = blood_group;
this.height = height;
this.weight = weight;
this.email = email;
}
}