1 | <?php |
||
10 | class Product |
||
11 | { |
||
12 | /** @Id @Column(type="integer") @GeneratedValue * */ |
||
13 | protected $id; |
||
14 | |||
15 | /** @Column(type="string") * */ |
||
16 | protected $name; |
||
17 | |||
18 | /** @Column(name="date_of_birth", type="string", nullable=true) * */ |
||
19 | protected $dateOfBirth; |
||
20 | |||
21 | public function getId() |
||
25 | |||
26 | public function setName($name) |
||
30 | |||
31 | public function getName() |
||
35 | |||
36 | public function setDateOfBirth($dateOfBirth) |
||
40 | |||
41 | public function getDateOfBirth() |
||
45 | } |