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