diff --git a/src/AppBundle/Entity/TutoresAscenso.php b/src/AppBundle/Entity/TutoresAscenso.php index 626fedd..311f34c 100644 --- a/src/AppBundle/Entity/TutoresAscenso.php +++ b/src/AppBundle/Entity/TutoresAscenso.php @@ -58,6 +58,14 @@ class TutoresAscenso * @ORM\Column(name="apellidos", type="string", length=255, nullable=false, options={"comment" = "Apellidos del Tutor"}) */ private $apellidos; + + + /** + * @var string + * + * @ORM\Column(name="institucion", type="string", length=255, nullable=true, options={"comment" = "Instituto educativo de donde viene es el tutor"}) + */ + private $institucion; /** * @var integer @@ -270,4 +278,27 @@ class TutoresAscenso { return $this->ascenso; } + + /** + * Set institucion + * + * @param string $institucion + * @return TutoresAscenso + */ + public function setInstitucion($institucion) + { + $this->institucion = $institucion; + + return $this; + } + + /** + * Get institucion + * + * @return string + */ + public function getInstitucion() + { + return $this->institucion; + } }