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

Open in your IDE?
  1. <?php
  2. namespace App\MDS\EventsBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ProposalAgents
  6.  *
  7.  * @ORM\Table(name="proposal_agents")
  8.  * @ORM\Entity(repositoryClass="App\MDS\EventsBundle\Repository\ProposalAgentsRepository")
  9.  */
  10. class ProposalAgents
  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="idProp", type="integer", unique=true)
  24.      */
  25.     private $idProp;
  26.     /**
  27.      * @var int
  28.      *
  29.      * @ORM\Column(name="agOne", type="integer", nullable=true)
  30.      */
  31.     private $agOne;
  32.     /**
  33.      * @var int
  34.      *
  35.      * @ORM\Column(name="agTwo", type="integer", nullable=true)
  36.      */
  37.     private $agTwo;
  38.     /**
  39.      * @var int
  40.      *
  41.      * @ORM\Column(name="agThree", type="integer", nullable=true)
  42.      */
  43.     private $agThree;
  44.     /**
  45.      * @var int
  46.      *
  47.      * @ORM\Column(name="agFour", type="integer", nullable=true)
  48.      */
  49.     private $agFour;
  50.     /**
  51.      * @var int
  52.      *
  53.      * @ORM\Column(name="agOnePerc", type="integer", nullable=true)
  54.      */
  55.     private $agOnePerc;
  56.     /**
  57.      * @var int
  58.      *
  59.      * @ORM\Column(name="agTwoPerc", type="integer", nullable=true)
  60.      */
  61.     private $agTwoPerc;
  62.     /**
  63.      * @var int
  64.      *
  65.      * @ORM\Column(name="agThreePerc", type="integer", nullable=true)
  66.      */
  67.     private $agThreePerc;
  68.     /**
  69.      * @var int
  70.      *
  71.      * @ORM\Column(name="agFourPerc", type="integer", nullable=true)
  72.      */
  73.     private $agFourPerc;
  74.     /**
  75.      * @var string
  76.      *
  77.      * @ORM\Column(name="agOneWork", type="string", nullable=true)
  78.      */
  79.     private $agOneWork;
  80.     /**
  81.      * @var string
  82.      *
  83.      * @ORM\Column(name="agTwoWork", type="string", nullable=true)
  84.      */
  85.     private $agTwoWork;
  86.     /**
  87.      * @var string
  88.      *
  89.      * @ORM\Column(name="agThreeWork", type="string", nullable=true)
  90.      */
  91.     private $agThreeWork;
  92.     /**
  93.      * @var string
  94.      *
  95.      * @ORM\Column(name="agFourWork", type="string", nullable=true)
  96.      */
  97.     private $agFourWork;
  98.     /**
  99.      * Get id
  100.      *
  101.      * @return int
  102.      */
  103.     public function getId()
  104.     {
  105.         return $this->id;
  106.     }
  107.     /**
  108.      * Set idProp
  109.      *
  110.      * @param integer $idProp
  111.      *
  112.      * @return ProposalAgents
  113.      */
  114.     public function setIdProp($idProp)
  115.     {
  116.         $this->idProp $idProp;
  117.         return $this;
  118.     }
  119.     /**
  120.      * Get idProp
  121.      *
  122.      * @return int
  123.      */
  124.     public function getIdProp()
  125.     {
  126.         return $this->idProp;
  127.     }
  128.     /**
  129.      * Set agOne
  130.      *
  131.      * @param integer $agOne
  132.      *
  133.      * @return ProposalAgents
  134.      */
  135.     public function setAgOne($agOne)
  136.     {
  137.         $this->agOne $agOne;
  138.         return $this;
  139.     }
  140.     /**
  141.      * Get agOne
  142.      *
  143.      * @return int
  144.      */
  145.     public function getAgOne()
  146.     {
  147.         return $this->agOne;
  148.     }
  149.     /**
  150.      * Set agTwo
  151.      *
  152.      * @param integer $agTwo
  153.      *
  154.      * @return ProposalAgents
  155.      */
  156.     public function setAgTwo($agTwo)
  157.     {
  158.         $this->agTwo $agTwo;
  159.         return $this;
  160.     }
  161.     /**
  162.      * Get agTwo
  163.      *
  164.      * @return int
  165.      */
  166.     public function getAgTwo()
  167.     {
  168.         return $this->agTwo;
  169.     }
  170.     /**
  171.      * Set agThree
  172.      *
  173.      * @param integer $agThree
  174.      *
  175.      * @return ProposalAgents
  176.      */
  177.     public function setAgThree($agThree)
  178.     {
  179.         $this->agThree $agThree;
  180.         return $this;
  181.     }
  182.     /**
  183.      * Get agThree
  184.      *
  185.      * @return int
  186.      */
  187.     public function getAgThree()
  188.     {
  189.         return $this->agThree;
  190.     }
  191.     /**
  192.      * Set agFour
  193.      *
  194.      * @param integer $agFour
  195.      *
  196.      * @return ProposalAgents
  197.      */
  198.     public function setAgFour($agFour)
  199.     {
  200.         $this->agFour $agFour;
  201.         return $this;
  202.     }
  203.     /**
  204.      * Get agFour
  205.      *
  206.      * @return int
  207.      */
  208.     public function getAgFour()
  209.     {
  210.         return $this->agFour;
  211.     }
  212.     /**
  213.      * Set agOnePerc
  214.      *
  215.      * @param integer $agOnePerc
  216.      *
  217.      * @return ProposalAgents
  218.      */
  219.     public function setAgOnePerc($agOnePerc)
  220.     {
  221.         $this->agOnePerc $agOnePerc;
  222.         return $this;
  223.     }
  224.     /**
  225.      * Get agOnePerc
  226.      *
  227.      * @return int
  228.      */
  229.     public function getAgOnePerc()
  230.     {
  231.         return $this->agOnePerc;
  232.     }
  233.     /**
  234.      * Set agTwoPerc
  235.      *
  236.      * @param integer $agTwoPerc
  237.      *
  238.      * @return ProposalAgents
  239.      */
  240.     public function setAgTwoPerc($agTwoPerc)
  241.     {
  242.         $this->agTwoPerc $agTwoPerc;
  243.         return $this;
  244.     }
  245.     /**
  246.      * Get agTwoPerc
  247.      *
  248.      * @return int
  249.      */
  250.     public function getAgTwoPerc()
  251.     {
  252.         return $this->agTwoPerc;
  253.     }
  254.     /**
  255.      * Set agThreePerc
  256.      *
  257.      * @param integer $agThreePerc
  258.      *
  259.      * @return ProposalAgents
  260.      */
  261.     public function setAgThreePerc($agThreePerc)
  262.     {
  263.         $this->agThreePerc $agThreePerc;
  264.         return $this;
  265.     }
  266.     /**
  267.      * Get agThreePerc
  268.      *
  269.      * @return int
  270.      */
  271.     public function getAgThreePerc()
  272.     {
  273.         return $this->agThreePerc;
  274.     }
  275.     /**
  276.      * Set agFourPerc
  277.      *
  278.      * @param integer $agFourPerc
  279.      *
  280.      * @return ProposalAgents
  281.      */
  282.     public function setAgFourPerc($agFourPerc)
  283.     {
  284.         $this->agFourPerc $agFourPerc;
  285.         return $this;
  286.     }
  287.     /**
  288.      * Get agFourPerc
  289.      *
  290.      * @return int
  291.      */
  292.     public function getAgFourPerc()
  293.     {
  294.         return $this->agFourPerc;
  295.     }
  296.     /**
  297.      * Set agOneWork
  298.      *
  299.      * @param string $agOneWork
  300.      *
  301.      * @return ProposalAgents
  302.      */
  303.     public function setAgOneWork($agOneWork)
  304.     {
  305.         $this->agOneWork $agOneWork;
  306.         return $this;
  307.     }
  308.     /**
  309.      * Get agOneWork
  310.      *
  311.      * @return string
  312.      */
  313.     public function getAgOneWork()
  314.     {
  315.         return $this->agOneWork;
  316.     }
  317.     /**
  318.      * Set agTwoWork
  319.      *
  320.      * @param string $agTwoWork
  321.      *
  322.      * @return ProposalAgents
  323.      */
  324.     public function setAgTwoWork($agTwoWork)
  325.     {
  326.         $this->agTwoWork $agTwoWork;
  327.         return $this;
  328.     }
  329.     /**
  330.      * Get agTwoWork
  331.      *
  332.      * @return string
  333.      */
  334.     public function getAgTwoWork()
  335.     {
  336.         return $this->agTwoWork;
  337.     }
  338.     /**
  339.      * Set agThreeWork
  340.      *
  341.      * @param string $agThreeWork
  342.      *
  343.      * @return ProposalAgents
  344.      */
  345.     public function setAgThreeWork($agThreeWork)
  346.     {
  347.         $this->agThreeWork $agThreeWork;
  348.         return $this;
  349.     }
  350.     /**
  351.      * Get agThreeWork
  352.      *
  353.      * @return string
  354.      */
  355.     public function getAgThreeWork()
  356.     {
  357.         return $this->agThreeWork;
  358.     }
  359.     /**
  360.      * Set agFourWork
  361.      *
  362.      * @param string $agFourWork
  363.      *
  364.      * @return ProposalAgents
  365.      */
  366.     public function setAgFourWork($agFourWork)
  367.     {
  368.         $this->agFourWork $agFourWork;
  369.         return $this;
  370.     }
  371.     /**
  372.      * Get agFourWork
  373.      *
  374.      * @return string
  375.      */
  376.     public function getAgFourWork()
  377.     {
  378.         return $this->agFourWork;
  379.     }
  380. }