src/MDS/EventsBundle/Entity/ProposalSupplierControl.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\MDS\EventsBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ProposalSupplierControl
  6.  *
  7.  * @ORM\Table(name="proposals_supplier_control")
  8.  * @ORM\Entity(repositoryClass="App\MDS\EventsBundle\Repository\ProposalSupplierControlRepository")
  9.  */
  10. class ProposalSupplierControl
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var int
  22.      *
  23.      * @ORM\Column(name="control_destination_id", type="integer")
  24.      */
  25.     private $controlDestinationId;
  26.     /**
  27.      * @var int
  28.      *
  29.      * @ORM\Column(name="proposal_id", type="integer")
  30.      */
  31.     private $proposalId;
  32.     /**
  33.      * @var int
  34.      *
  35.      * @ORM\Column(name="destino_id", type="integer")
  36.      */
  37.     private $destinoId;
  38.     /**
  39.      * @var int
  40.      *
  41.      * @ORM\Column(name="supplier_id", type="integer", nullable=true)
  42.      */
  43.     private $supplierId;
  44.     /**
  45.      * @var int
  46.      *
  47.      * @ORM\Column(name="idea_id", type="integer", nullable=true)
  48.      */
  49.     private $ideaId;
  50.     /**
  51.      * @var int
  52.      *
  53.      * @ORM\Column(name="activity_id", type="integer", nullable=true)
  54.      */
  55.     private $activityId;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="status", type="string", length=255)
  60.      */
  61.     private $status;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="rank", type="string", length=255, nullable=true)
  66.      */
  67.     private $rank '1';
  68.     /**
  69.      * @var int
  70.      *
  71.      * @ORM\Column(name="disabled", type="integer", nullable=true)
  72.      */
  73.     private $disabled '0';
  74.     /**
  75.      * @var \DateTime
  76.      *
  77.      * @ORM\Column(name="date_block_limit", type="datetime", nullable=true)
  78.      */
  79.     private $dateBlockLimit;
  80.     /**
  81.      * Get id
  82.      *
  83.      * @return int
  84.      */
  85.     public function getId()
  86.     {
  87.         return $this->id;
  88.     }
  89.     /**
  90.      * Set controlDestinationId
  91.      *
  92.      * @param integer $controlDestinationId
  93.      *
  94.      * @return ProposalSupplierControl
  95.      */
  96.     public function setControlDestinationId($controlDestinationId)
  97.     {
  98.         $this->controlDestinationId $controlDestinationId;
  99.         return $this;
  100.     }
  101.     /**
  102.      * Get controlDestinationId
  103.      *
  104.      * @return int
  105.      */
  106.     public function getControlDestinationId()
  107.     {
  108.         return $this->controlDestinationId;
  109.     }
  110.     /**
  111.      * Set proposalId
  112.      *
  113.      * @param integer $proposalId
  114.      *
  115.      * @return ProposalSupplierControl
  116.      */
  117.     public function setProposalId($proposalId)
  118.     {
  119.         $this->proposalId $proposalId;
  120.         return $this;
  121.     }
  122.     /**
  123.      * Get proposalId
  124.      *
  125.      * @return int
  126.      */
  127.     public function getProposalId()
  128.     {
  129.         return $this->proposalId;
  130.     }
  131.     /**
  132.      * Set destinoId
  133.      *
  134.      * @param integer $destinoId
  135.      *
  136.      * @return ProposalSupplierControl
  137.      */
  138.     public function setDestinoId($destinoId)
  139.     {
  140.         $this->destinoId $destinoId;
  141.         return $this;
  142.     }
  143.     /**
  144.      * Get destinoId
  145.      *
  146.      * @return int
  147.      */
  148.     public function getDestinoId()
  149.     {
  150.         return $this->destinoId;
  151.     }
  152.     /**
  153.      * Set supplierId
  154.      *
  155.      * @param integer $supplierId
  156.      *
  157.      * @return ProposalSupplierControl
  158.      */
  159.     public function setSupplierId($supplierId)
  160.     {
  161.         $this->supplierId $supplierId;
  162.         return $this;
  163.     }
  164.     /**
  165.      * Get supplierId
  166.      *
  167.      * @return int
  168.      */
  169.     public function getSupplierId()
  170.     {
  171.         return $this->supplierId;
  172.     }
  173.     /**
  174.      * Set status
  175.      *
  176.      * @param string $status
  177.      *
  178.      * @return ProposalSupplierControl
  179.      */
  180.     public function setStatus($status)
  181.     {
  182.         $this->status $status;
  183.         return $this;
  184.     }
  185.     /**
  186.      * Get status
  187.      *
  188.      * @return string
  189.      */
  190.     public function getStatus()
  191.     {
  192.         return $this->status;
  193.     }
  194.     /**
  195.      * Set disabled
  196.      *
  197.      * @param integer $disabled
  198.      *
  199.      * @return ProposalSupplierControl
  200.      */
  201.     public function setDisabled($disabled)
  202.     {
  203.         $this->disabled $disabled;
  204.         return $this;
  205.     }
  206.     /**
  207.      * Get disabled
  208.      *
  209.      * @return integer
  210.      */
  211.     public function getDisabled()
  212.     {
  213.         return $this->disabled;
  214.     }
  215.     /**
  216.      * Set rank
  217.      *
  218.      * @param string $rank
  219.      *
  220.      * @return ProposalSupplierControl
  221.      */
  222.     public function setRank($rank)
  223.     {
  224.         $this->rank $rank;
  225.         return $this;
  226.     }
  227.     /**
  228.      * Get rank
  229.      *
  230.      * @return string
  231.      */
  232.     public function getRank()
  233.     {
  234.         return $this->rank;
  235.     }
  236.     /**
  237.      * Set ideaId
  238.      *
  239.      * @param integer $ideaId
  240.      *
  241.      * @return ProposalSupplierControl
  242.      */
  243.     public function setIdeaId($ideaId)
  244.     {
  245.         $this->ideaId $ideaId;
  246.         return $this;
  247.     }
  248.     /**
  249.      * Get ideaId
  250.      *
  251.      * @return integer
  252.      */
  253.     public function getIdeaId()
  254.     {
  255.         return $this->ideaId;
  256.     }
  257.     /**
  258.      * Set dateBlockLimit
  259.      *
  260.      * @param \DateTime $dateBlockLimit
  261.      *
  262.      * @return ProposalSupplierControl
  263.      */
  264.     public function setDateBlockLimit($dateBlockLimit)
  265.     {
  266.         $this->dateBlockLimit $dateBlockLimit;
  267.         return $this;
  268.     }
  269.     /**
  270.      * Get dateBlockLimit
  271.      *
  272.      * @return \DateTime
  273.      */
  274.     public function getDateBlockLimit()
  275.     {
  276.         return $this->dateBlockLimit;
  277.     }
  278.     /**
  279.      * Set activityId
  280.      *
  281.      * @param integer $activityId
  282.      *
  283.      * @return ProposalSupplierControl
  284.      */
  285.     public function setActivityId($activityId)
  286.     {
  287.         $this->activityId $activityId;
  288.         return $this;
  289.     }
  290.     /**
  291.      * Get activityId
  292.      *
  293.      * @return integer
  294.      */
  295.     public function getActivityId()
  296.     {
  297.         return $this->activityId;
  298.     }
  299. }