| 1 | <?php |
||
| 29 | class Company extends Contact |
||
| 30 | { |
||
| 31 | /** |
||
| 32 | * @var int Id of company |
||
| 33 | * |
||
| 34 | * @ORM\Column(name="id", type="integer") |
||
| 35 | * @ORM\Id |
||
| 36 | * @ORM\GeneratedValue(strategy="AUTO") |
||
| 37 | */ |
||
| 38 | private $id; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @var string Status of company |
||
| 42 | * |
||
| 43 | * @ORM\Column(name="status", type="string", length=255) |
||
| 44 | */ |
||
| 45 | private $status; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Get id |
||
| 49 | * |
||
| 50 | * @return integer |
||
| 51 | */ |
||
| 52 | public function getId() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Set status. |
||
| 59 | * |
||
| 60 | * @param string $status Legal status |
||
| 61 | * |
||
| 62 | * @return Company |
||
| 63 | */ |
||
| 64 | public function setStatus($status) |
||
| 70 | |||
| 71 | /** |
||
| 72 | * Get status. |
||
| 73 | * |
||
| 74 | * @return string |
||
| 75 | */ |
||
| 76 | public function getStatus() |
||
| 80 | } |
||
| 81 |