<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="fusacq_dbo.statistiques_nb_consultations_annonces_acheteur")
*/
class StatistiquesNbConsultationsAnnoncesAcheteurEntity
{
/**
*
* @var int @ORM\Id
* @ORM\Column(type="integer",name="id_annonce")
*
*/
protected $id_annonce;
/**
*
* @var string @ORM\Column(type="integer", nullable=true, name="nb_consultations", options={"default"= null})
*/
protected $nb_consultations;
/**
*
* @var string @ORM\Column(type="integer", nullable=true, name="mail_notification", options={"default"= null})
*/
protected $mail_notification;
/**
* 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;
}
}