1 | <?php |
||
12 | class JobTiming extends BaseJobTiming |
||
13 | { |
||
14 | /** |
||
15 | * @ORM\Column(type="bigint") |
||
16 | * @ORM\Id |
||
17 | * @ORM\GeneratedValue(strategy="AUTO") |
||
18 | */ |
||
19 | protected $id; |
||
20 | |||
21 | /** |
||
22 | * @ORM\Column(type="datetime") |
||
23 | */ |
||
24 | protected $finishedAt; |
||
25 | |||
26 | /** |
||
27 | * @ORM\Column(type="integer") |
||
28 | */ |
||
29 | protected $status; |
||
30 | |||
31 | /** |
||
32 | * @return mixed |
||
33 | */ |
||
34 | public function getId() |
||
38 | |||
39 | /** |
||
40 | * @param mixed $id |
||
41 | */ |
||
42 | public function setId($id) |
||
46 | } |
||
47 |