<?php
declare(strict_types=1);
/**
* @author Raymond
*/
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* buzz_actualites table.
*
* @ORM\Entity
* @ORM\Table(name="buzz_lien_operations_annonces_vendeur")
*/
class BuzzLienOperationsAnnoncesVendeur
{
/**
* @var int @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id_lien;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_annonce", options={"default"= null})
*/
protected $id_annonce;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_operation", options={"default"= null})
*/
protected $id_operation;
public function __get($property)
{
return $this->$property;
}
public function __set($property, $value)
{
$this->$property = $value;
}
}