InfectionsZMO   A
last analyzed

Complexity

Total Complexity 14

Size/Duplication

Total Lines 89
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 14
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 89
rs 10

14 Methods

Rating   Name   Duplication   Size   Complexity  
A getLKZMO() 0 3 1
A setLKZMO() 0 4 1
A getZMO1() 0 3 1
A setZMO1() 0 4 1
A getZMO2() 0 3 1
A setZMO2() 0 4 1
A getZMO3() 0 3 1
A setZMO3() 0 4 1
A getZMO4() 0 3 1
A setZMO4() 0 4 1
A getBM() 0 3 1
A setBM() 0 4 1
A getPH() 0 3 1
A setPH() 0 4 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_monthly",
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 InfectionsZMO extends InfectionRaport{
48
	
49
	/**
50
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
51
	 */
52
	public $LKZMO;
53
	
54
	/**
55
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
56
	 */
57
	public $ZMO1;
58
	
59
	/**
60
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
61
	 */
62
	public $ZMO2;
63
	
64
	/**
65
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
66
	 */
67
	public $ZMO3;
68
	
69
	/**
70
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
71
	 */
72
	public $ZMO4;
73
	
74
	/**
75
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
76
	 */
77
	public $BM;
78
	
79
	/**
80
	 * @Column(columnDefinition="DECIMAL(4,0) NOT NULL DEFAULT 0") *
81
	 */
82
	public $PH;
83
84
	public function getLKZMO() {
85
		return $this->LKZMO;
86
	}
87
	public function setLKZMO($LKZMO) {
88
		$this->LKZMO = $LKZMO;
89
		return $this;
90
	}
91
	public function getZMO1() {
92
		return $this->ZMO1;
93
	}
94
	public function setZMO1($ZMO1) {
95
		$this->ZMO1 = $ZMO1;
96
		return $this;
97
	}
98
	public function getZMO2() {
99
		return $this->ZMO2;
100
	}
101
	public function setZMO2($ZMO2) {
102
		$this->ZMO2 = $ZMO2;
103
		return $this;
104
	}
105
	public function getZMO3() {
106
		return $this->ZMO3;
107
	}
108
	public function setZMO3($ZMO3) {
109
		$this->ZMO3 = $ZMO3;
110
		return $this;
111
	}
112
	public function getZMO4() {
113
		return $this->ZMO4;
114
	}
115
	public function setZMO4($ZMO4) {
116
		$this->ZMO4 = $ZMO4;
117
		return $this;
118
	}
119
	public function getBM() {
120
		return $this->BM;
121
	}
122
	public function setBM($BM) {
123
		$this->BM = $BM;
124
		return $this;
125
	}
126
	public function getPH() {
127
		return $this->PH;
128
	}
129
	public function setPH($PH) {
130
		$this->PH = $PH;
131
		return $this;
132
	}
133
	
134
	
135
}
136