src/Entity/BuzzLienOperationsAnnoncesVendeur.php line 18

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4.  * @author Raymond
  5.  */
  6. namespace App\Entity;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * buzz_actualites table.
  10.  *
  11.  * @ORM\Entity
  12.  * @ORM\Table(name="buzz_lien_operations_annonces_vendeur")
  13.  */
  14. class BuzzLienOperationsAnnoncesVendeur
  15. {
  16.     /**
  17.      * @var int @ORM\Id
  18.      * @ORM\Column(type="integer")
  19.      * @ORM\GeneratedValue(strategy="AUTO")
  20.      */
  21.     protected $id_lien;
  22.     /**
  23.      * @var string @ORM\Column(type="integer", nullable=true, name="id_annonce", options={"default"= null})
  24.      */
  25.     protected $id_annonce;
  26.     /**
  27.      * @var string @ORM\Column(type="integer", nullable=true, name="id_operation", options={"default"= null})
  28.      */
  29.     protected $id_operation;
  30.     public function __get($property)
  31.     {
  32.         return $this->$property;
  33.     }
  34.     public function __set($property$value)
  35.     {
  36.         $this->$property $value;
  37.     }
  38. }