This repository was archived by the owner on Dec 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPatient.java
More file actions
28 lines (20 loc) · 1.12 KB
/
Patient.java
File metadata and controls
28 lines (20 loc) · 1.12 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
package feelsafeHibernatePackage;
// Generated by MyEclipse - Hibernate Tools
import java.util.Set;
/**
* Patient generated by MyEclipse - Hibernate Tools
*/
public class Patient extends AbstractPatient implements java.io.Serializable {
// Constructors
/** default constructor */
public Patient() {
}
/** minimal constructor */
public Patient(String patientuserid) {
super(patientuserid);
}
/** full constructor */
public Patient(String patientuserid, Employees employeesByEmployeeuserid, Employees employeesByDoctorconsultedid, String password, String name, Integer age, Integer sex, String bloodgroup, Integer testundergone, Integer ecg, Integer bloodtest, Integer xray, Integer scan, String address, String mobilenumber, String healthproblem, String dietspecified, String prescribedmedicines, Set roomses) {
super(patientuserid, employeesByEmployeeuserid, employeesByDoctorconsultedid, password, name, age, sex, bloodgroup, testundergone, ecg, bloodtest, xray, scan, address, mobilenumber, healthproblem, dietspecified, prescribedmedicines, roomses);
}
}