|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* PatientPOR |
|
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 $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
|
|
|
* PatientPOR |
|
29
|
|
|
* |
|
30
|
|
|
* @category Wp |
|
31
|
|
|
* @package Punction |
|
32
|
|
|
* @author Andrzej Marcinkowski <[email protected]> |
|
33
|
|
|
* @copyright 2014 Wojewódzki Szpital Zespolony, Kalisz |
|
34
|
|
|
* @license MIT http://opensource.org/licenses/MIentT |
|
35
|
|
|
* @version 1.0 $Format:%H$ |
|
36
|
|
|
* @link http:// |
|
37
|
|
|
* @since File available since Release 1.0.0 |
|
38
|
|
|
* |
|
39
|
|
|
* @Entity |
|
40
|
|
|
*/ |
|
41
|
|
|
class PatientPOR extends Patient { |
|
42
|
|
|
|
|
43
|
|
|
/* |
|
44
|
|
|
* I Ciąża; |
|
45
|
|
|
* I Wywiad; |
|
46
|
|
|
* I Pozycja; |
|
47
|
|
|
* I Higiena; |
|
48
|
|
|
* I Dieta; |
|
49
|
|
|
* I Pomiar parametrów życiowych; |
|
50
|
|
|
* I ASP; |
|
51
|
|
|
* I Postęp porodu; |
|
52
|
|
|
* I Wydalanie; |
|
53
|
|
|
* I Pęcherz płodowy; |
|
54
|
|
|
* I Ćwiczenia oddechowe; |
|
55
|
|
|
* I Leki; |
|
56
|
|
|
* I Edukacja zdrowotna i wsparcie psychiczne; |
|
57
|
|
|
* II Czas; |
|
58
|
|
|
* II Pozycja; |
|
59
|
|
|
* II Czystość krocza; |
|
60
|
|
|
* II Nacięcie; |
|
61
|
|
|
* II Aktywność; |
|
62
|
|
|
* II Higiena; |
|
63
|
|
|
* II Dieta; |
|
64
|
|
|
* II Pomiar parametrów życiowych; |
|
65
|
|
|
* II ASP; |
|
66
|
|
|
* II Wydalanie; |
|
67
|
|
|
* II Leki; |
|
68
|
|
|
* II Edukacja zdrowotna i wsparcie psychiczne; |
|
69
|
|
|
* III Apgar; |
|
70
|
|
|
* III Waga; |
|
71
|
|
|
* III Kontakt; |
|
72
|
|
|
* III Zabiegi; |
|
73
|
|
|
* III Krwawienie; |
|
74
|
|
|
* III Nacięcie; |
|
75
|
|
|
* III Higiena; |
|
76
|
|
|
* III Dieta; |
|
77
|
|
|
* III Pomiar parametrów życiowych; |
|
78
|
|
|
* III Wydalanie; |
|
79
|
|
|
* III Leki; |
|
80
|
|
|
* III Edukacja zdrowotna i wsparcie psychiczne; |
|
81
|
|
|
* IV Obserwacja; |
|
82
|
|
|
* IV Pomiar parametrów życiowych; |
|
83
|
|
|
* IV Karmienie; |
|
84
|
|
|
* IV Edukacja zdrowotna i wsparcie psychiczne; |
|
85
|
|
|
*/ |
|
86
|
|
|
/** |
|
87
|
|
|
* |
|
88
|
|
|
* @var string $typ typ pacjenta |
|
89
|
|
|
*/ |
|
90
|
|
|
protected $typ = "POR"; |
|
91
|
|
|
|
|
92
|
|
|
/** |
|
93
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
94
|
|
|
*/ |
|
95
|
|
|
public $iCiaza; |
|
96
|
|
|
|
|
97
|
|
|
/** |
|
98
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
99
|
|
|
*/ |
|
100
|
|
|
public $iWywiad; |
|
101
|
|
|
/** |
|
102
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
103
|
|
|
*/ |
|
104
|
|
|
public $iPozycja; |
|
105
|
|
|
/** |
|
106
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
107
|
|
|
*/ |
|
108
|
|
|
public $iHigiena; |
|
109
|
|
|
/** |
|
110
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
111
|
|
|
*/ |
|
112
|
|
|
public $iDieta; |
|
113
|
|
|
/** |
|
114
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
115
|
|
|
*/ |
|
116
|
|
|
public $iPomiarParametrowZyciowych; |
|
117
|
|
|
/** |
|
118
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
119
|
|
|
*/ |
|
120
|
|
|
public $iASP; |
|
121
|
|
|
/** |
|
122
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
123
|
|
|
*/ |
|
124
|
|
|
public $iPostepPorodu; |
|
125
|
|
|
/** |
|
126
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
127
|
|
|
*/ |
|
128
|
|
|
public $iWydalanie; |
|
129
|
|
|
/** |
|
130
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
131
|
|
|
*/ |
|
132
|
|
|
public $iPecherzPlodowy; |
|
133
|
|
|
/** |
|
134
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
135
|
|
|
*/ |
|
136
|
|
|
public $iCwiczeniaOddechowe; |
|
137
|
|
|
/** |
|
138
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
139
|
|
|
*/ |
|
140
|
|
|
public $iLeki; |
|
141
|
|
|
/** |
|
142
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
143
|
|
|
*/ |
|
144
|
|
|
public $iEdukacjaZdrowotnaIWsparciePsychiczne; |
|
145
|
|
|
/** |
|
146
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
147
|
|
|
*/ |
|
148
|
|
|
public $iICzas; |
|
149
|
|
|
/** |
|
150
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
151
|
|
|
*/ |
|
152
|
|
|
public $iIPozycja; |
|
153
|
|
|
/** |
|
154
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
155
|
|
|
*/ |
|
156
|
|
|
public $iICzystoscKrocza; |
|
157
|
|
|
/** |
|
158
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
159
|
|
|
*/ |
|
160
|
|
|
public $iINaciecie; |
|
161
|
|
|
/** |
|
162
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
163
|
|
|
*/ |
|
164
|
|
|
public $iIAktywnosc; |
|
165
|
|
|
/** |
|
166
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
167
|
|
|
*/ |
|
168
|
|
|
public $iIHigiena; |
|
169
|
|
|
/** |
|
170
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
171
|
|
|
*/ |
|
172
|
|
|
public $iIDieta; |
|
173
|
|
|
/** |
|
174
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
175
|
|
|
*/ |
|
176
|
|
|
public $iIPomiarParametrowZyciowych; |
|
177
|
|
|
/** |
|
178
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
179
|
|
|
*/ |
|
180
|
|
|
public $iIASP; |
|
181
|
|
|
/** |
|
182
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
183
|
|
|
*/ |
|
184
|
|
|
public $iIWydalanie; |
|
185
|
|
|
/** |
|
186
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
187
|
|
|
*/ |
|
188
|
|
|
public $iILeki; |
|
189
|
|
|
/** |
|
190
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
191
|
|
|
*/ |
|
192
|
|
|
public $iIEdukacjaZdrowotnaIWsparciePsychiczne; |
|
193
|
|
|
/** |
|
194
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
195
|
|
|
*/ |
|
196
|
|
|
public $iIIApgar; |
|
197
|
|
|
/** |
|
198
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
199
|
|
|
*/ |
|
200
|
|
|
public $iIIWaga; |
|
201
|
|
|
/** |
|
202
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
203
|
|
|
*/ |
|
204
|
|
|
public $iIIKontakt; |
|
205
|
|
|
/** |
|
206
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
207
|
|
|
*/ |
|
208
|
|
|
public $iIIZabiegi; |
|
209
|
|
|
/** |
|
210
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
211
|
|
|
*/ |
|
212
|
|
|
public $iIIKrwawienie; |
|
213
|
|
|
/** |
|
214
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
215
|
|
|
*/ |
|
216
|
|
|
public $iIINaciecie; |
|
217
|
|
|
/** |
|
218
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
219
|
|
|
*/ |
|
220
|
|
|
public $iIIHigiena; |
|
221
|
|
|
/** |
|
222
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
223
|
|
|
*/ |
|
224
|
|
|
public $iIIDieta; |
|
225
|
|
|
/** |
|
226
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
227
|
|
|
*/ |
|
228
|
|
|
public $iIIPomiarParametrowZyciowych; |
|
229
|
|
|
/** |
|
230
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
231
|
|
|
*/ |
|
232
|
|
|
public $iIIWydalanie; |
|
233
|
|
|
/** |
|
234
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
235
|
|
|
*/ |
|
236
|
|
|
public $iIILeki; |
|
237
|
|
|
/** |
|
238
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
239
|
|
|
*/ |
|
240
|
|
|
public $iIIEdukacjaZdrowotnaIWsparciePsychiczne; |
|
241
|
|
|
/** |
|
242
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
243
|
|
|
*/ |
|
244
|
|
|
public $iVObserwacja; |
|
245
|
|
|
/** |
|
246
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
247
|
|
|
*/ |
|
248
|
|
|
public $iVPomiarParametrowZyciowych; |
|
249
|
|
|
/** |
|
250
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
251
|
|
|
*/ |
|
252
|
|
|
public $iVKarmienie; |
|
253
|
|
|
/** |
|
254
|
|
|
* @Column(columnDefinition="TINYINT(4) DEFAULT 0") |
|
255
|
|
|
*/ |
|
256
|
|
|
public $iVEdukacjaZdrowotnaIWsparciePsychiczne; |
|
257
|
|
|
|
|
258
|
|
|
|
|
259
|
|
|
|
|
260
|
|
|
|
|
261
|
|
|
|
|
262
|
|
|
|
|
263
|
|
|
|
|
264
|
|
|
|
|
265
|
|
|
|
|
266
|
|
|
|
|
267
|
|
|
/** |
|
268
|
|
|
* getFields |
|
269
|
|
|
* |
|
270
|
|
|
* @return multitype:string |
|
|
|
|
|
|
271
|
|
|
*/ |
|
272
|
|
|
public static function getFields() { |
|
273
|
|
|
$superFields = parent::getFields (); |
|
274
|
|
|
$fields = array_merge ( $superFields, array ( |
|
275
|
|
|
"iCiaza", |
|
276
|
|
|
"iWywiad", |
|
277
|
|
|
"iPozycja", |
|
278
|
|
|
"iHigiena", |
|
279
|
|
|
"iDieta", |
|
280
|
|
|
"iPomiarParametrowZyciowych", |
|
281
|
|
|
"iASP", |
|
282
|
|
|
"iPostepPorodu", |
|
283
|
|
|
"iWydalanie", |
|
284
|
|
|
"iPecherzPlodowy", |
|
285
|
|
|
"iCwiczeniaOddechowe", |
|
286
|
|
|
"iLeki", |
|
287
|
|
|
"iEdukacjaZdrowotnaIWsparciePsychiczne", |
|
288
|
|
|
"iICzas", |
|
289
|
|
|
"iIPozycja", |
|
290
|
|
|
"iICzystoscKrocza", |
|
291
|
|
|
"iINaciecie", |
|
292
|
|
|
"iIAktywnosc", |
|
293
|
|
|
"iIHigiena", |
|
294
|
|
|
"iIDieta", |
|
295
|
|
|
"iIPomiarParametrowZyciowych", |
|
296
|
|
|
"iIASP", |
|
297
|
|
|
"iIWydalanie", |
|
298
|
|
|
"iILeki", |
|
299
|
|
|
"iIEdukacjaZdrowotnaIWsparciePsychiczne", |
|
300
|
|
|
"iIIApgar", |
|
301
|
|
|
"iIIWaga", |
|
302
|
|
|
"iIIKontakt", |
|
303
|
|
|
"iIIZabiegi", |
|
304
|
|
|
"iIIKrwawienie", |
|
305
|
|
|
"iIINaciecie", |
|
306
|
|
|
"iIIHigiena", |
|
307
|
|
|
"iIIDieta", |
|
308
|
|
|
"iIIPomiarParametrowZyciowych", |
|
309
|
|
|
"iIIWydalanie", |
|
310
|
|
|
"iIILeki", |
|
311
|
|
|
"iIIEdukacjaZdrowotnaIWsparciePsychiczne", |
|
312
|
|
|
"iVObserwacja", |
|
313
|
|
|
"iVPomiarParametrowZyciowych", |
|
314
|
|
|
"iVKarmienie", |
|
315
|
|
|
"iVEdukacjaZdrowotnaIWsparciePsychiczne" |
|
316
|
|
|
) ); |
|
317
|
|
|
return $fields; |
|
318
|
|
|
} |
|
319
|
|
|
public function getICiaza() { |
|
320
|
|
|
return $this->iCiaza; |
|
321
|
|
|
} |
|
322
|
|
|
public function setICiaza($iCiaza) { |
|
323
|
|
|
$this->iCiaza = $iCiaza; |
|
324
|
|
|
return $this; |
|
325
|
|
|
} |
|
326
|
|
|
public function getIWywiad() { |
|
327
|
|
|
return $this->iWywiad; |
|
328
|
|
|
} |
|
329
|
|
|
public function setIWywiad($iWywiad) { |
|
330
|
|
|
$this->iWywiad = $iWywiad; |
|
331
|
|
|
return $this; |
|
332
|
|
|
} |
|
333
|
|
|
public function getIPozycja() { |
|
334
|
|
|
return $this->iPozycja; |
|
335
|
|
|
} |
|
336
|
|
|
public function setIPozycja($iPozycja) { |
|
337
|
|
|
$this->iPozycja = $iPozycja; |
|
338
|
|
|
return $this; |
|
339
|
|
|
} |
|
340
|
|
|
public function getIHigiena() { |
|
341
|
|
|
return $this->iHigiena; |
|
342
|
|
|
} |
|
343
|
|
|
public function setIHigiena($iHigiena) { |
|
344
|
|
|
$this->iHigiena = $iHigiena; |
|
345
|
|
|
return $this; |
|
346
|
|
|
} |
|
347
|
|
|
public function getIDieta() { |
|
348
|
|
|
return $this->iDieta; |
|
349
|
|
|
} |
|
350
|
|
|
public function setIDieta($iDieta) { |
|
351
|
|
|
$this->iDieta = $iDieta; |
|
352
|
|
|
return $this; |
|
353
|
|
|
} |
|
354
|
|
|
public function getIPomiarParametrowZyciowych() { |
|
355
|
|
|
return $this->iPomiarParametrowZyciowych; |
|
356
|
|
|
} |
|
357
|
|
|
public function setIPomiarParametrowZyciowych($iPomiarParametrowZyciowych) { |
|
358
|
|
|
$this->iPomiarParametrowZyciowych = $iPomiarParametrowZyciowych; |
|
359
|
|
|
return $this; |
|
360
|
|
|
} |
|
361
|
|
|
public function getIASP() { |
|
362
|
|
|
return $this->iASP; |
|
363
|
|
|
} |
|
364
|
|
|
public function setIASP($iASP) { |
|
365
|
|
|
$this->iASP = $iASP; |
|
366
|
|
|
return $this; |
|
367
|
|
|
} |
|
368
|
|
|
public function getIPostepPorodu() { |
|
369
|
|
|
return $this->iPostepPorodu; |
|
370
|
|
|
} |
|
371
|
|
|
public function setIPostepPorodu($iPostepPorodu) { |
|
372
|
|
|
$this->iPostepPorodu = $iPostepPorodu; |
|
373
|
|
|
return $this; |
|
374
|
|
|
} |
|
375
|
|
|
public function getIWydalanie() { |
|
376
|
|
|
return $this->iWydalanie; |
|
377
|
|
|
} |
|
378
|
|
|
public function setIWydalanie($iWydalanie) { |
|
379
|
|
|
$this->iWydalanie = $iWydalanie; |
|
380
|
|
|
return $this; |
|
381
|
|
|
} |
|
382
|
|
|
public function getIPecherzPlodowy() { |
|
383
|
|
|
return $this->iPecherzPlodowy; |
|
384
|
|
|
} |
|
385
|
|
|
public function setIPecherzPlodowy($iPecherzPlodowy) { |
|
386
|
|
|
$this->iPecherzPlodowy = $iPecherzPlodowy; |
|
387
|
|
|
return $this; |
|
388
|
|
|
} |
|
389
|
|
|
public function getICwiczeniaOddechowe() { |
|
390
|
|
|
return $this->iCwiczeniaOddechowe; |
|
391
|
|
|
} |
|
392
|
|
|
public function setICwiczeniaOddechowe($iCwiczeniaOddechowe) { |
|
393
|
|
|
$this->iCwiczeniaOddechowe = $iCwiczeniaOddechowe; |
|
394
|
|
|
return $this; |
|
395
|
|
|
} |
|
396
|
|
|
public function getILeki() { |
|
397
|
|
|
return $this->iLeki; |
|
398
|
|
|
} |
|
399
|
|
|
public function setILeki($iLeki) { |
|
400
|
|
|
$this->iLeki = $iLeki; |
|
401
|
|
|
return $this; |
|
402
|
|
|
} |
|
403
|
|
|
public function getIEdukacjaZdrowotnaIWsparciePsychiczne() { |
|
404
|
|
|
return $this->iEdukacjaZdrowotnaIWsparciePsychiczne; |
|
405
|
|
|
} |
|
406
|
|
|
public function setIEdukacjaZdrowotnaIWsparciePsychiczne($iEdukacjaZdrowotnaIWsparciePsychiczne) { |
|
407
|
|
|
$this->iEdukacjaZdrowotnaIWsparciePsychiczne = $iEdukacjaZdrowotnaIWsparciePsychiczne; |
|
408
|
|
|
return $this; |
|
409
|
|
|
} |
|
410
|
|
|
public function getIICzas() { |
|
411
|
|
|
return $this->iICzas; |
|
412
|
|
|
} |
|
413
|
|
|
public function setIICzas($iICzas) { |
|
414
|
|
|
$this->iICzas = $iICzas; |
|
415
|
|
|
return $this; |
|
416
|
|
|
} |
|
417
|
|
|
public function getIIPozycja() { |
|
418
|
|
|
return $this->iIPozycja; |
|
419
|
|
|
} |
|
420
|
|
|
public function setIIPozycja($iIPozycja) { |
|
421
|
|
|
$this->iIPozycja = $iIPozycja; |
|
422
|
|
|
return $this; |
|
423
|
|
|
} |
|
424
|
|
|
public function getIICzystoscKrocza() { |
|
425
|
|
|
return $this->iICzystoscKrocza; |
|
426
|
|
|
} |
|
427
|
|
|
public function setIICzystoscKrocza($iICzystoscKrocza) { |
|
428
|
|
|
$this->iICzystoscKrocza = $iICzystoscKrocza; |
|
429
|
|
|
return $this; |
|
430
|
|
|
} |
|
431
|
|
|
public function getIINaciecie() { |
|
432
|
|
|
return $this->iINaciecie; |
|
433
|
|
|
} |
|
434
|
|
|
public function setIINaciecie($iINaciecie) { |
|
435
|
|
|
$this->iINaciecie = $iINaciecie; |
|
436
|
|
|
return $this; |
|
437
|
|
|
} |
|
438
|
|
|
public function getIIAktywnosc() { |
|
439
|
|
|
return $this->iIAktywnosc; |
|
440
|
|
|
} |
|
441
|
|
|
public function setIIAktywnosc($iIAktywnosc) { |
|
442
|
|
|
$this->iIAktywnosc = $iIAktywnosc; |
|
443
|
|
|
return $this; |
|
444
|
|
|
} |
|
445
|
|
|
public function getIIHigiena() { |
|
446
|
|
|
return $this->iIHigiena; |
|
447
|
|
|
} |
|
448
|
|
|
public function setIIHigiena($iIHigiena) { |
|
449
|
|
|
$this->iIHigiena = $iIHigiena; |
|
450
|
|
|
return $this; |
|
451
|
|
|
} |
|
452
|
|
|
public function getIIDieta() { |
|
453
|
|
|
return $this->iIDieta; |
|
454
|
|
|
} |
|
455
|
|
|
public function setIIDieta($iIDieta) { |
|
456
|
|
|
$this->iIDieta = $iIDieta; |
|
457
|
|
|
return $this; |
|
458
|
|
|
} |
|
459
|
|
|
public function getIIPomiarParametrowZyciowych() { |
|
460
|
|
|
return $this->iIPomiarParametrowZyciowych; |
|
461
|
|
|
} |
|
462
|
|
|
public function setIIPomiarParametrowZyciowych($iIPomiarParametrowZyciowych) { |
|
463
|
|
|
$this->iIPomiarParametrowZyciowych = $iIPomiarParametrowZyciowych; |
|
464
|
|
|
return $this; |
|
465
|
|
|
} |
|
466
|
|
|
public function getIIASP() { |
|
467
|
|
|
return $this->iIASP; |
|
468
|
|
|
} |
|
469
|
|
|
public function setIIASP($iIASP) { |
|
470
|
|
|
$this->iIASP = $iIASP; |
|
471
|
|
|
return $this; |
|
472
|
|
|
} |
|
473
|
|
|
public function getIIWydalanie() { |
|
474
|
|
|
return $this->iIWydalanie; |
|
475
|
|
|
} |
|
476
|
|
|
public function setIIWydalanie($iIWydalanie) { |
|
477
|
|
|
$this->iIWydalanie = $iIWydalanie; |
|
478
|
|
|
return $this; |
|
479
|
|
|
} |
|
480
|
|
|
public function getIILeki() { |
|
481
|
|
|
return $this->iILeki; |
|
482
|
|
|
} |
|
483
|
|
|
public function setIILeki($iILeki) { |
|
484
|
|
|
$this->iILeki = $iILeki; |
|
485
|
|
|
return $this; |
|
486
|
|
|
} |
|
487
|
|
|
public function getIIEdukacjaZdrowotnaIWsparciePsychiczne() { |
|
488
|
|
|
return $this->iIEdukacjaZdrowotnaIWsparciePsychiczne; |
|
489
|
|
|
} |
|
490
|
|
|
public function setIIEdukacjaZdrowotnaIWsparciePsychiczne($iIEdukacjaZdrowotnaIWsparciePsychiczne) { |
|
491
|
|
|
$this->iIEdukacjaZdrowotnaIWsparciePsychiczne = $iIEdukacjaZdrowotnaIWsparciePsychiczne; |
|
492
|
|
|
return $this; |
|
493
|
|
|
} |
|
494
|
|
|
public function getIiiApgar() { |
|
495
|
|
|
return $this->iIIApgar; |
|
496
|
|
|
} |
|
497
|
|
|
public function setIiiApgar($iIIApgar) { |
|
498
|
|
|
$this->iIIApgar = $iIIApgar; |
|
499
|
|
|
return $this; |
|
500
|
|
|
} |
|
501
|
|
|
public function getIiiWaga() { |
|
502
|
|
|
return $this->iIIWaga; |
|
503
|
|
|
} |
|
504
|
|
|
public function setIiiWaga($iIIWaga) { |
|
505
|
|
|
$this->iIIWaga = $iIIWaga; |
|
506
|
|
|
return $this; |
|
507
|
|
|
} |
|
508
|
|
|
public function getIiiKontakt() { |
|
509
|
|
|
return $this->iIIKontakt; |
|
510
|
|
|
} |
|
511
|
|
|
public function setIiiKontakt($iIIKontakt) { |
|
512
|
|
|
$this->iIIKontakt = $iIIKontakt; |
|
513
|
|
|
return $this; |
|
514
|
|
|
} |
|
515
|
|
|
public function getIiiZabiegi() { |
|
516
|
|
|
return $this->iIIZabiegi; |
|
517
|
|
|
} |
|
518
|
|
|
public function setIiiZabiegi($iIIZabiegi) { |
|
519
|
|
|
$this->iIIZabiegi = $iIIZabiegi; |
|
520
|
|
|
return $this; |
|
521
|
|
|
} |
|
522
|
|
|
public function getIiiKrwawienie() { |
|
523
|
|
|
return $this->iIIKrwawienie; |
|
524
|
|
|
} |
|
525
|
|
|
public function setIiiKrwawienie($iIIKrwawienie) { |
|
526
|
|
|
$this->iIIKrwawienie = $iIIKrwawienie; |
|
527
|
|
|
return $this; |
|
528
|
|
|
} |
|
529
|
|
|
public function getIiiNaciecie() { |
|
530
|
|
|
return $this->iIINaciecie; |
|
531
|
|
|
} |
|
532
|
|
|
public function setIiiNaciecie($iIINaciecie) { |
|
533
|
|
|
$this->iIINaciecie = $iIINaciecie; |
|
534
|
|
|
return $this; |
|
535
|
|
|
} |
|
536
|
|
|
public function getIiiHigiena() { |
|
537
|
|
|
return $this->iIIHigiena; |
|
538
|
|
|
} |
|
539
|
|
|
public function setIiiHigiena($iIIHigiena) { |
|
540
|
|
|
$this->iIIHigiena = $iIIHigiena; |
|
541
|
|
|
return $this; |
|
542
|
|
|
} |
|
543
|
|
|
public function getIiiDieta() { |
|
544
|
|
|
return $this->iIIDieta; |
|
545
|
|
|
} |
|
546
|
|
|
public function setIiiDieta($iIIDieta) { |
|
547
|
|
|
$this->iIIDieta = $iIIDieta; |
|
548
|
|
|
return $this; |
|
549
|
|
|
} |
|
550
|
|
|
public function getIiiPomiarParametrowZyciowych() { |
|
551
|
|
|
return $this->iIIPomiarParametrowZyciowych; |
|
552
|
|
|
} |
|
553
|
|
|
public function setIiiPomiarParametrowZyciowych($iIIPomiarParametrowZyciowych) { |
|
554
|
|
|
$this->iIIPomiarParametrowZyciowych = $iIIPomiarParametrowZyciowych; |
|
555
|
|
|
return $this; |
|
556
|
|
|
} |
|
557
|
|
|
public function getIiiWydalanie() { |
|
558
|
|
|
return $this->iIIWydalanie; |
|
559
|
|
|
} |
|
560
|
|
|
public function setIiiWydalanie($iIIWydalanie) { |
|
561
|
|
|
$this->iIIWydalanie = $iIIWydalanie; |
|
562
|
|
|
return $this; |
|
563
|
|
|
} |
|
564
|
|
|
public function getIiiLeki() { |
|
565
|
|
|
return $this->iIILeki; |
|
566
|
|
|
} |
|
567
|
|
|
public function setIiiLeki($iIILeki) { |
|
568
|
|
|
$this->iIILeki = $iIILeki; |
|
569
|
|
|
return $this; |
|
570
|
|
|
} |
|
571
|
|
|
public function getIiiEdukacjaZdrowotnaIWsparciePsychiczne() { |
|
572
|
|
|
return $this->iIIEdukacjaZdrowotnaIWsparciePsychiczne; |
|
573
|
|
|
} |
|
574
|
|
|
public function setIiiEdukacjaZdrowotnaIWsparciePsychiczne($iIIEdukacjaZdrowotnaIWsparciePsychiczne) { |
|
575
|
|
|
$this->iIIEdukacjaZdrowotnaIWsparciePsychiczne = $iIIEdukacjaZdrowotnaIWsparciePsychiczne; |
|
576
|
|
|
return $this; |
|
577
|
|
|
} |
|
578
|
|
|
public function getIVObserwacja() { |
|
579
|
|
|
return $this->iVObserwacja; |
|
580
|
|
|
} |
|
581
|
|
|
public function setIVObserwacja($iVObserwacja) { |
|
582
|
|
|
$this->iVObserwacja = $iVObserwacja; |
|
583
|
|
|
return $this; |
|
584
|
|
|
} |
|
585
|
|
|
public function getIVPomiarParametrowZyciowych() { |
|
586
|
|
|
return $this->iVPomiarParametrowZyciowych; |
|
587
|
|
|
} |
|
588
|
|
|
public function setIVPomiarParametrowZyciowych($iVPomiarParametrowZyciowych) { |
|
589
|
|
|
$this->iVPomiarParametrowZyciowych = $iVPomiarParametrowZyciowych; |
|
590
|
|
|
return $this; |
|
591
|
|
|
} |
|
592
|
|
|
public function getIVKarmienie() { |
|
593
|
|
|
return $this->iVKarmienie; |
|
594
|
|
|
} |
|
595
|
|
|
public function setIVKarmienie($iVKarmienie) { |
|
596
|
|
|
$this->iVKarmienie = $iVKarmienie; |
|
597
|
|
|
return $this; |
|
598
|
|
|
} |
|
599
|
|
|
public function getIVEdukacjaZdrowotnaIWsparciePsychiczne() { |
|
600
|
|
|
return $this->iVEdukacjaZdrowotnaIWsparciePsychiczne; |
|
601
|
|
|
} |
|
602
|
|
|
public function setIVEdukacjaZdrowotnaIWsparciePsychiczne($iVEdukacjaZdrowotnaIWsparciePsychiczne) { |
|
603
|
|
|
$this->iVEdukacjaZdrowotnaIWsparciePsychiczne = $iVEdukacjaZdrowotnaIWsparciePsychiczne; |
|
604
|
|
|
return $this; |
|
605
|
|
|
} |
|
606
|
|
|
|
|
607
|
|
|
} |
|
608
|
|
|
|
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.