<?php
/**
* ReceptionType.php
* Created by Stéphane Brun
* Date: 17/07/2018 at 16:56
*/
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="reception_reponse")
*/
class ReceptionReponse
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(name="en_clair", type="string", length=150)
*/
protected $enClair;
/**
* @ORM\Column(name="code", type="string", length=50)
*/
protected $code;
/**
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getEnClair()
{
return $this->enClair;
}
/**
* @param string $enClair
*/
public function setEnClair($enClair)
{
$this->enClair = $enClair;
}
/**
* @return string
*/
public function getCode()
{
return $this->code;
}
/**
* @param string $code
*/
public function setCode($code)
{
$this->code = $code;
}
}