forked from slifty/OpenHMIS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TmpPhysicalDisability.java
137 lines (110 loc) · 3.49 KB
/
TmpPhysicalDisability.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
131
132
133
134
135
136
137
package org.openhmis.domain;
// Generated Aug 5, 2015 10:00:15 PM by Hibernate Tools 4.3.1
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import static javax.persistence.GenerationType.IDENTITY;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
/**
* TmpPhysicalDisability generated by hbm2java
*/
@Entity
@Table(name = "TMP_PHYSICAL_DISABILITY")
public class TmpPhysicalDisability implements java.io.Serializable {
private Integer physicalDisabilityId;
private Integer enrollmentId;
private Date informationDate;
private Integer response;
private Integer indefiniteAndImpairs;
private Integer documentationOnFile;
private Integer receivingServices;
private Date dateCreated;
private Date dateUpdated;
public TmpPhysicalDisability() {
}
public TmpPhysicalDisability(Integer enrollmentId, Date informationDate,
Integer response, Integer indefiniteAndImpairs,
Integer documentationOnFile, Integer receivingServices,
Date dateCreated, Date dateUpdated) {
this.enrollmentId = enrollmentId;
this.informationDate = informationDate;
this.response = response;
this.indefiniteAndImpairs = indefiniteAndImpairs;
this.documentationOnFile = documentationOnFile;
this.receivingServices = receivingServices;
this.dateCreated = dateCreated;
this.dateUpdated = dateUpdated;
}
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "physicalDisabilityId", unique = true, nullable = false)
public Integer getPhysicalDisabilityId() {
return this.physicalDisabilityId;
}
public void setPhysicalDisabilityId(Integer physicalDisabilityId) {
this.physicalDisabilityId = physicalDisabilityId;
}
@Column(name = "enrollmentId")
public Integer getEnrollmentId() {
return this.enrollmentId;
}
public void setEnrollmentId(Integer enrollmentId) {
this.enrollmentId = enrollmentId;
}
@Temporal(TemporalType.DATE)
@Column(name = "informationDate", length = 10)
public Date getInformationDate() {
return this.informationDate;
}
public void setInformationDate(Date informationDate) {
this.informationDate = informationDate;
}
@Column(name = "response")
public Integer getResponse() {
return this.response;
}
public void setResponse(Integer response) {
this.response = response;
}
@Column(name = "indefiniteAndImpairs")
public Integer getIndefiniteAndImpairs() {
return this.indefiniteAndImpairs;
}
public void setIndefiniteAndImpairs(Integer indefiniteAndImpairs) {
this.indefiniteAndImpairs = indefiniteAndImpairs;
}
@Column(name = "documentationOnFile")
public Integer getDocumentationOnFile() {
return this.documentationOnFile;
}
public void setDocumentationOnFile(Integer documentationOnFile) {
this.documentationOnFile = documentationOnFile;
}
@Column(name = "receivingServices")
public Integer getReceivingServices() {
return this.receivingServices;
}
public void setReceivingServices(Integer receivingServices) {
this.receivingServices = receivingServices;
}
@Temporal(TemporalType.DATE)
@Column(name = "dateCreated", length = 10)
public Date getDateCreated() {
return this.dateCreated;
}
public void setDateCreated(Date dateCreated) {
this.dateCreated = dateCreated;
}
@Temporal(TemporalType.DATE)
@Column(name = "dateUpdated", length = 10)
public Date getDateUpdated() {
return this.dateUpdated;
}
public void setDateUpdated(Date dateUpdated) {
this.dateUpdated = dateUpdated;
}
}