<?phpnamespace App\MDS\EventsBundle\Entity;use Doctrine\ORM\Mapping as ORM;/** * ProposalControl * * @ORM\Table(name="proposals_control") * @ORM\Entity(repositoryClass="App\MDS\EventsBundle\Repository\ProposalControlRepository") */class ProposalControl{ /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var int * * @ORM\Column(name="proposal_id", type="integer") */ private $proposalId; /** * @var int * * @ORM\Column(name="destination_id", type="integer") */ private $destinationId; /** * @var int * * @ORM\Column(name="disabled", type="integer", nullable=true) */ private $disabled = '0'; /** * @var int * * @ORM\Column(name="disabled_presentation", type="integer", nullable=true) */ private $disabledPresentation = '0'; /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Set proposalId * * @param integer $proposalId * * @return ProposalControl */ public function setProposalId($proposalId) { $this->proposalId = $proposalId; return $this; } /** * Get proposalId * * @return int */ public function getProposalId() { return $this->proposalId; } /** * Set destinationId * * @param integer $destinationId * * @return ProposalControl */ public function setDestinationId($destinationId) { $this->destinationId = $destinationId; return $this; } /** * Get destinationId * * @return int */ public function getDestinationId() { return $this->destinationId; } /** * Set disabled * * @param integer $disabled * * @return ProposalControl */ public function setDisabled($disabled) { $this->disabled = $disabled; return $this; } /** * Get disabled * * @return integer */ public function getDisabled() { return $this->disabled; } /** * Set disabledPresentation * * @param integer $disabledPresentation * * @return ProposalControl */ public function setDisabledPresentation($disabledPresentation) { $this->disabledPresentation = $disabledPresentation; return $this; } /** * Get disabledPresentation * * @return integer */ public function getDisabledPresentation() { return $this->disabledPresentation; }}