src/project/OfficeBrain/CustomBundle/CareerBundle/Entity/CareerApplicationEducation.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\project\OfficeBrain\CustomBundle\CareerBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * CareerApplicationEducation
  6.  *
  7.  * @ORM\Table("tbl_career_application_education")
  8.  * @ORM\Entity(repositoryClass="App\project\OfficeBrain\CustomBundle\CareerBundle\Entity\CareerApplicationEducationRepository")
  9.  */
  10. class CareerApplicationEducation
  11. {
  12.     /**
  13.      * @var integer
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\ManyToOne(targetEntity="CareerApplicationUserData", inversedBy="careerApplicationEducation")
  22.      * @ORM\JoinColumn(name="career_application_user_data_id", referencedColumnName="id")
  23.      */
  24.     private $careerApplicationUserDataId;
  25.     /**
  26.      * @var string
  27.      *
  28.      * @ORM\Column(name="school_name", type="string", length=255, nullable=true)
  29.      */
  30.     private $schoolName;
  31.     /**
  32.      * @var string
  33.      *
  34.      * @ORM\Column(name="city", type="string", length=255, nullable=true)
  35.      */
  36.     private $city;
  37.     /**
  38.      * @var string
  39.      *
  40.      * @ORM\Column(name="course", type="string", length=255, nullable=true)
  41.      */
  42.     private $course;
  43.     /**
  44.      * @var integer
  45.      *
  46.      * @ORM\Column(name="years_completed", type="integer", nullable=true)
  47.      */
  48.     private $yearsCompleted;
  49.     
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="is_graduated", type="string", length=255, nullable=true)
  54.      */
  55.     private $isGraduated;
  56.     
  57.     /**
  58.      * @var string
  59.      *
  60.      * @ORM\Column(name="school", type="string", length=255, nullable=true)
  61.      */
  62.     private $school;
  63.     /**
  64.      * Get id
  65.      *
  66.      * @return integer
  67.      */
  68.     public function getId()
  69.     {
  70.         return $this->id;
  71.     }    
  72.     /**
  73.      * Set schoolName
  74.      *
  75.      * @param string $schoolName
  76.      *
  77.      * @return CareerApplicationEducation
  78.      */
  79.     public function setSchoolName($schoolName)
  80.     {
  81.         $this->schoolName $schoolName;
  82.         return $this;
  83.     }
  84.     /**
  85.      * Get schoolName
  86.      *
  87.      * @return string
  88.      */
  89.     public function getSchoolName()
  90.     {
  91.         return $this->schoolName;
  92.     }
  93.     /**
  94.      * Set city
  95.      *
  96.      * @param string $city
  97.      *
  98.      * @return CareerApplicationEducation
  99.      */
  100.     public function setCity($city)
  101.     {
  102.         $this->city $city;
  103.         return $this;
  104.     }
  105.     /**
  106.      * Get city
  107.      *
  108.      * @return string
  109.      */
  110.     public function getCity()
  111.     {
  112.         return $this->city;
  113.     }
  114.     /**
  115.      * Set course
  116.      *
  117.      * @param string $course
  118.      *
  119.      * @return CareerApplicationEducation
  120.      */
  121.     public function setCourse($course)
  122.     {
  123.         $this->course $course;
  124.         return $this;
  125.     }
  126.     /**
  127.      * Get course
  128.      *
  129.      * @return string
  130.      */
  131.     public function getCourse()
  132.     {
  133.         return $this->course;
  134.     }
  135.     /**
  136.      * Set yearsCompleted
  137.      *
  138.      * @param integer $yearsCompleted
  139.      *
  140.      * @return CareerApplicationEducation
  141.      */
  142.     public function setYearsCompleted($yearsCompleted)
  143.     {
  144.         $this->yearsCompleted $yearsCompleted;
  145.         return $this;
  146.     }
  147.     /**
  148.      * Get yearsCompleted
  149.      *
  150.      * @return integer
  151.      */
  152.     public function getYearsCompleted()
  153.     {
  154.         return $this->yearsCompleted;
  155.     }
  156.     
  157.     /**
  158.      * Set school
  159.      *
  160.      * @param string $isGraduated
  161.      *
  162.      * @return CareerApplicationEducation
  163.      */
  164.     public function setIsGraduated($isGraduated)
  165.     {
  166.         $this->isGraduated $isGraduated;
  167.     
  168.         return $this;
  169.     }
  170.     
  171.     /**
  172.      * Get isGraduated
  173.      *
  174.      * @return string
  175.      */
  176.     public function getIsGraduated()
  177.     {
  178.         return $this->isGraduated;
  179.     }
  180.     
  181.     /**
  182.      * Set school
  183.      *
  184.      * @param string $school
  185.      *
  186.      * @return CareerApplicationEducation
  187.      */
  188.     public function setSchool($school)
  189.     {
  190.         $this->school $school;
  191.         return $this;
  192.     }
  193.     /**
  194.      * Get school
  195.      *
  196.      * @return string
  197.      */
  198.     public function getSchool()
  199.     {
  200.         return $this->school;
  201.     }
  202.     /**
  203.      * Set careerApplicationUserDataId
  204.      *
  205.      * @param \App\project\OfficeBrain\CustomBundle\CareerBundle\Entity\CareerApplicationUserData $careerApplicationUserDataId
  206.      *
  207.      * @return CareerApplicationEducation
  208.      */
  209.     public function setCareerApplicationUserDataId(\App\project\OfficeBrain\CustomBundle\CareerBundle\Entity\CareerApplicationUserData $careerApplicationUserDataId null)
  210.     {
  211.         $this->careerApplicationUserDataId $careerApplicationUserDataId;
  212.         return $this;
  213.     }
  214.     /**
  215.      * Get careerApplicationUserDataId
  216.      *
  217.      * @return \App\project\OfficeBrain\CustomBundle\CareerBundle\Entity\CareerApplicationUserData
  218.      */
  219.     public function getCareerApplicationUserDataId()
  220.     {
  221.         return $this->careerApplicationUserDataId;
  222.     }
  223. }