1 | <?php |
||
7 | class NotificationLog |
||
8 | { |
||
9 | /** |
||
10 | * @Id @Column(type="integer") @GeneratedValue |
||
11 | **/ |
||
12 | private $id; |
||
13 | /** |
||
14 | * @Column(type="integer") |
||
15 | **/ |
||
16 | private $trigger_id; |
||
17 | /** |
||
18 | * @Column(type="integer") |
||
19 | **/ |
||
20 | private $server_id; |
||
21 | /** |
||
22 | * @Column(type="string") |
||
23 | **/ |
||
24 | private $message; |
||
25 | /** |
||
26 | * @Column(type="integer") |
||
27 | **/ |
||
28 | private $created; |
||
29 | |||
30 | public function getId() |
||
34 | |||
35 | public function getTriggerId() |
||
39 | |||
40 | public function getServerId() |
||
44 | |||
45 | public function getMessage() |
||
49 | |||
50 | public function setTriggerId($triggerId) |
||
54 | |||
55 | public function setServerId($serverId) |
||
63 | |||
64 | public function setCreated($created) |
||
68 | } |
||
69 |