1 | <?php |
||
10 | class EveRefType |
||
11 | { |
||
12 | /** |
||
13 | * @ORM\Id @ORM\Column(name="refTypeID", type="bigint", options={"unsigned"=true}) |
||
14 | */ |
||
15 | private $refTypeId; |
||
16 | |||
17 | /** |
||
18 | * @ORM\Column(name="refTypeName", type="string") |
||
19 | */ |
||
20 | private $refTypeName; |
||
21 | |||
22 | public function __construct( |
||
23 | $refTypeId, |
||
24 | $refTypeName |
||
25 | ) { |
||
26 | $this->refTypeId = $refTypeId; |
||
27 | $this->refTypeName = $refTypeName; |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Get refTypeId |
||
32 | * |
||
33 | * @return integer |
||
34 | */ |
||
35 | public function getRefTypeId() |
||
39 | |||
40 | /** |
||
41 | * Get refTypeName |
||
42 | * |
||
43 | * @return string |
||
44 | */ |
||
45 | public function getRefTypeName() |
||
49 | } |
||
50 |