<?php
declare(strict_types=1);
/**
* @author Raymond
*/
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=ValorisationsRepository::class)
* @ORM\Table(name="fusacq_dbo.valorisations_liens_annonces_vendeur")
*/
class ValorisationsLiensAnnoncesVendeur
{
/**
* @var int @ORM\Id
* @ORM\Column(type="integer",name="id_lien")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id_lien;
/**
* @var string @ORM\Column(type="integer", unique=true, nullable=true, name="id_valorisation", options={"default"= null})
*/
protected $id_valorisation;
/**
* @var string @ORM\Column(type="integer", unique=true, nullable=true, name="id_annonce", options={"default"= null})
*/
protected $id_annonce;
/**
* Magic getter to expose protected properties.
*
* @param string $property
*
* @return mixed
*/
public function _get($property)
{
return $this->$property;
}
/**
* Magic setter to save protected properties.
*
* @param string $property
* @param mixed $value
*/
public function _set($property, $value)
{
$this->$property = $value;
}
}