InfectionsZUM::setLPZUM2()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 3
nc 1
nop 1
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_zum",
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 InfectionsZUM extends InfectionRaport {
48
	
49
	/**
50
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
51
	 */
52
	public $LPKZUM;
53
	
54
	/**
55
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
56
	 */
57
	public $LPZUM;
58
	
59
	/**
60
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
61
	 */
62
	public $LPZUM1;
63
	
64
	/**
65
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
66
	 */
67
	public $LPZUM2;
68
	
69
	/**
70
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
71
	 */
72
	public $BM;
73
	
74
	public function getLPKZUM() {
75
		return $this->LPKZUM;
76
	}
77
	public function setLPKZUM($LPKZUM) {
78
		$this->LPKZUM = $LPKZUM;
79
		return $this;
80
	}
81
	
82
	public function getLPZUM() {
83
		return $this->LPZUM;
84
	}
85
	public function setLPZUM($LPZUM) {
86
		$this->LPZUM = $LPZUM;
87
		return $this;
88
	}
89
	
90
	public function getLPZUM1() {
91
		return $this->LPZUM1;
92
	}
93
	public function setLPZUM1($LPZUM1) {
94
		$this->LPZUM1 = $LPZUM1;
95
		return $this;
96
	}
97
	
98
	public function getLPZUM2() {
99
		return $this->LPZUM2;
100
	}
101
	public function setLPZUM2($LPZUM2) {
102
		$this->LPZUM2 = $LPZUM2;
103
		return $this;
104
	}
105
	
106
	public function getBM() {
107
		return $this->BM;
108
	}
109
	public function setBM($BM) {
110
		$this->BM = $BM;
111
		return $this;
112
	}
113
	
114
	
115
	
116
	
117
}
118