|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* Patient |
|
5
|
|
|
* |
|
6
|
|
|
* THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED |
|
7
|
|
|
* OR IMPLIED. ANY USE IS AT YOUR OWN RISK. |
|
8
|
|
|
* |
|
9
|
|
|
* Permission is hereby granted to use or copy this program |
|
10
|
|
|
* for any purpose, provided the above notices are retained on all copies. |
|
11
|
|
|
* Permission to modify the code and to distribute modified code is granted, |
|
12
|
|
|
* provided the above notices are retained, and a notice that the code was |
|
13
|
|
|
* modified is included with the above copyright notice. |
|
14
|
|
|
* |
|
15
|
|
|
* @category Wp |
|
16
|
|
|
* @package Punction |
|
17
|
|
|
* @author Andrzej Marcinkowski <[email protected]> |
|
18
|
|
|
* @copyright 2014 Wojewódzki Szpital Zespolony, Kalisz |
|
19
|
|
|
* @license MIT http://opensource.org/licenses/MIT |
|
20
|
|
|
* @version 1.0 $Id: 5e3d6d9fad27385cb557282c244e0767bf6c41e0 $ $Format:%H$ |
|
21
|
|
|
* @link http:// |
|
22
|
|
|
* @since File available since Release 1.0.0 |
|
23
|
|
|
* PHP Version 5 |
|
24
|
|
|
*/ |
|
25
|
|
|
namespace Hospitalplugin\Entities; |
|
26
|
|
|
|
|
27
|
|
|
/** |
|
28
|
|
|
* Infections |
|
29
|
|
|
* |
|
30
|
|
|
* @category Wp |
|
31
|
|
|
* @package Epidemio |
|
32
|
|
|
* @author Andrzej Marcinkowski <[email protected]> |
|
33
|
|
|
* @copyright 2014 Wojewódzki Szpital Zespolony, Kalisz |
|
34
|
|
|
* @license MIT http://opensource.org/licenses/MIT |
|
35
|
|
|
* @version 1.0 $Id: 5e3d6d9fad27385cb557282c244e0767bf6c41e0 $ $Format:%H$ |
|
36
|
|
|
* @link http:// |
|
37
|
|
|
* @since File available since Release 1.0.0 |
|
38
|
|
|
* |
|
39
|
|
|
* @Entity |
|
40
|
|
|
* @Table(name="epidemio_infections_zodc", |
|
41
|
|
|
* options={"collate"="utf8_polish_ci", "charset"="utf8", "engine"="MyISAM"}, |
|
42
|
|
|
* indexes={ |
|
43
|
|
|
* @index(name="dataRaportu_idx", columns={"dataRaportu"}), |
|
44
|
|
|
* @index(name="oddzialId_idx", columns={"oddzialId"}), |
|
45
|
|
|
* @index(name="userId_idx", columns={"userId"})}) |
|
46
|
|
|
*/ |
|
47
|
|
|
class InfectionsZODC extends InfectionRaport { |
|
48
|
|
|
|
|
49
|
|
|
/** |
|
50
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
51
|
|
|
*/ |
|
52
|
|
|
public $LDZ; |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
56
|
|
|
*/ |
|
57
|
|
|
public $LDKZ; |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
61
|
|
|
*/ |
|
62
|
|
|
public $PDOZ; |
|
63
|
|
|
|
|
64
|
|
|
/** |
|
65
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
66
|
|
|
*/ |
|
67
|
|
|
public $LDCZ; |
|
68
|
|
|
|
|
69
|
|
|
/** |
|
70
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
71
|
|
|
*/ |
|
72
|
|
|
public $LDKCZ; |
|
73
|
|
|
|
|
74
|
|
|
/** |
|
75
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
76
|
|
|
*/ |
|
77
|
|
|
public $PDCZ; |
|
78
|
|
|
|
|
79
|
|
|
/** |
|
80
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
81
|
|
|
*/ |
|
82
|
|
|
public $LDD; |
|
83
|
|
|
|
|
84
|
|
|
/** |
|
85
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
86
|
|
|
*/ |
|
87
|
|
|
public $LDKD; |
|
88
|
|
|
|
|
89
|
|
|
/** |
|
90
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
91
|
|
|
*/ |
|
92
|
|
|
public $PDD; |
|
93
|
|
|
|
|
94
|
|
|
/** |
|
95
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
96
|
|
|
*/ |
|
97
|
|
|
public $LDT; |
|
98
|
|
|
|
|
99
|
|
|
/** |
|
100
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
101
|
|
|
*/ |
|
102
|
|
|
public $LDKT; |
|
103
|
|
|
|
|
104
|
|
|
/** |
|
105
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
106
|
|
|
*/ |
|
107
|
|
|
public $PDT; |
|
108
|
|
|
|
|
109
|
|
|
/** |
|
110
|
|
|
* @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") * |
|
111
|
|
|
*/ |
|
112
|
|
|
public $BM; |
|
113
|
|
|
|
|
114
|
|
|
public function getLDZ() { |
|
115
|
|
|
return $this->LDZ; |
|
116
|
|
|
} |
|
117
|
|
|
public function setLDZ($LDZ) { |
|
118
|
|
|
$this->LDZ = $LDZ; |
|
119
|
|
|
return $this; |
|
120
|
|
|
} |
|
121
|
|
|
|
|
122
|
|
|
|
|
123
|
|
|
public function getLDKZ() { |
|
124
|
|
|
return $this->LDKZ; |
|
125
|
|
|
} |
|
126
|
|
|
public function setLDKZ($LDKZ) { |
|
127
|
|
|
$this->LDKZ = $LDKZ; |
|
128
|
|
|
return $this; |
|
129
|
|
|
} |
|
130
|
|
|
|
|
131
|
|
|
public function getPDOZ() { |
|
132
|
|
|
return $this->PDOZ; |
|
133
|
|
|
} |
|
134
|
|
|
public function setPDOZ($PDOZ) { |
|
135
|
|
|
$this->PDOZ = $PDOZ; |
|
136
|
|
|
return $this; |
|
137
|
|
|
} |
|
138
|
|
|
|
|
139
|
|
|
|
|
140
|
|
|
public function getLDCZ() { |
|
141
|
|
|
return $this->LDCZ; |
|
142
|
|
|
} |
|
143
|
|
|
public function setLDCZ($LDCZ) { |
|
144
|
|
|
$this->LDCZ = $LDCZ; |
|
145
|
|
|
return $this; |
|
146
|
|
|
} |
|
147
|
|
|
|
|
148
|
|
|
|
|
149
|
|
|
public function getLDKCZ() { |
|
150
|
|
|
return $this->LDKCZ; |
|
151
|
|
|
} |
|
152
|
|
|
public function setLDKCZ($LDKCZ) { |
|
153
|
|
|
$this->LDKCZ = $LDKCZ; |
|
154
|
|
|
return $this; |
|
155
|
|
|
} |
|
156
|
|
|
|
|
157
|
|
|
|
|
158
|
|
|
public function getPDCZ() { |
|
159
|
|
|
return $this->PDCZ; |
|
160
|
|
|
} |
|
161
|
|
|
public function setPDCZ($PDCZ) { |
|
162
|
|
|
$this->PDCZ = $PDCZ; |
|
163
|
|
|
return $this; |
|
164
|
|
|
} |
|
165
|
|
|
|
|
166
|
|
|
|
|
167
|
|
|
public function getLDD() { |
|
168
|
|
|
return $this->LDD; |
|
169
|
|
|
} |
|
170
|
|
|
public function setLDD($LDD) { |
|
171
|
|
|
$this->LDD = $LDD; |
|
172
|
|
|
return $this; |
|
173
|
|
|
} |
|
174
|
|
|
|
|
175
|
|
|
|
|
176
|
|
|
public function getLDKD() { |
|
177
|
|
|
return $this->LDKD; |
|
178
|
|
|
} |
|
179
|
|
|
public function setLDKD($LDKD) { |
|
180
|
|
|
$this->LDKD = $LDKD; |
|
181
|
|
|
return $this; |
|
182
|
|
|
} |
|
183
|
|
|
|
|
184
|
|
|
|
|
185
|
|
|
public function getPDD() { |
|
186
|
|
|
return $this->PDD; |
|
187
|
|
|
} |
|
188
|
|
|
public function setPDD($PDD) { |
|
189
|
|
|
$this->PDD = $PDD; |
|
190
|
|
|
return $this; |
|
191
|
|
|
} |
|
192
|
|
|
|
|
193
|
|
|
|
|
194
|
|
|
public function getLDT() { |
|
195
|
|
|
return $this->LDT; |
|
196
|
|
|
} |
|
197
|
|
|
public function setLDT($LDT) { |
|
198
|
|
|
$this->LDT = $LDT; |
|
199
|
|
|
return $this; |
|
200
|
|
|
} |
|
201
|
|
|
|
|
202
|
|
|
|
|
203
|
|
|
public function getLDKT() { |
|
204
|
|
|
return $this->LDKT; |
|
205
|
|
|
} |
|
206
|
|
|
public function setLDKT($LDKT) { |
|
207
|
|
|
$this->LDKT = $LDKT; |
|
208
|
|
|
return $this; |
|
209
|
|
|
} |
|
210
|
|
|
|
|
211
|
|
|
|
|
212
|
|
|
public function getPDT() { |
|
213
|
|
|
return $this->PDT; |
|
214
|
|
|
} |
|
215
|
|
|
public function setPDT($PDT) { |
|
216
|
|
|
$this->PDT = $PDT; |
|
217
|
|
|
return $this; |
|
218
|
|
|
} |
|
219
|
|
|
|
|
220
|
|
|
public function getBM() { |
|
221
|
|
|
return $this->BM; |
|
222
|
|
|
} |
|
223
|
|
|
public function setBM($BM) { |
|
224
|
|
|
$this->BM = $BM; |
|
225
|
|
|
return $this; |
|
226
|
|
|
} |
|
227
|
|
|
} |
|
228
|
|
|
|