From cd280b1e9548c046bf35ef9913daa9ec8c28a026 Mon Sep 17 00:00:00 2001 From: Wilmer Date: Mon, 16 Jan 2017 10:40:54 -0400 Subject: [PATCH] =?UTF-8?q?a=C3=B1adido=20el=20campo=20de=20institucion=20?= =?UTF-8?q?de=20procedencia=20del=20tutor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/AppBundle/Entity/TutoresAscenso.php | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) 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; + } } -- 2.0.0