-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrescription.java
70 lines (56 loc) · 1.76 KB
/
Prescription.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
package com.example.healthone;
/**
* Created by Aditya on 27-09-2016.
*/
public class Prescription {
String prescription_id;
String doctor_id;
String medicine_id;
String patient_id;
String quantity;
String intake_instructions;
public String getPrescription_id() {
return prescription_id;
}
public void setPrescription_id(String prescription_id) {
this.prescription_id = prescription_id;
}
public String getDoctor_id() {
return doctor_id;
}
public void setDoctor_id(String doctor_id) {
this.doctor_id = doctor_id;
}
public String getMedicine_id() {
return medicine_id;
}
public void setMedicine_id(String medicine_id) {
this.medicine_id = medicine_id;
}
public String getPatient_id() {
return patient_id;
}
public void setPatient_id(String patient_id) {
this.patient_id = patient_id;
}
public String getQuantity() {
return quantity;
}
public void setQuantity(String quantity) {
this.quantity = quantity;
}
public String getIntake_instructions() {
return intake_instructions;
}
public void setIntake_instructions(String intake_instructions) {
this.intake_instructions = intake_instructions;
}
public Prescription(String prescription_id, String doctor_id, String medicine_id, String patient_id, String quantity, String intake_instructions) {
this.prescription_id = prescription_id;
this.doctor_id = doctor_id;
this.medicine_id = medicine_id;
this.patient_id = patient_id;
this.quantity = quantity;
this.intake_instructions = intake_instructions;
}
}