Commit cd280b1e9548c046bf35ef9913daa9ec8c28a026
1 parent
e971f686b6
Exists in
master
añadido el campo de institucion de procedencia del tutor
Showing
1 changed file
with
31 additions
and
0 deletions
Show diff stats
src/AppBundle/Entity/TutoresAscenso.php
| @@ -58,6 +58,14 @@ class TutoresAscenso | @@ -58,6 +58,14 @@ class TutoresAscenso | ||
| 58 | * @ORM\Column(name="apellidos", type="string", length=255, nullable=false, options={"comment" = "Apellidos del Tutor"}) | 58 | * @ORM\Column(name="apellidos", type="string", length=255, nullable=false, options={"comment" = "Apellidos del Tutor"}) |
| 59 | */ | 59 | */ |
| 60 | private $apellidos; | 60 | private $apellidos; |
| 61 | + | ||
| 62 | + | ||
| 63 | + /** | ||
| 64 | + * @var string | ||
| 65 | + * | ||
| 66 | + * @ORM\Column(name="institucion", type="string", length=255, nullable=true, options={"comment" = "Instituto educativo de donde viene es el tutor"}) | ||
| 67 | + */ | ||
| 68 | + private $institucion; | ||
| 61 | 69 | ||
| 62 | /** | 70 | /** |
| 63 | * @var integer | 71 | * @var integer |
| @@ -270,4 +278,27 @@ class TutoresAscenso | @@ -270,4 +278,27 @@ class TutoresAscenso | ||
| 270 | { | 278 | { |
| 271 | return $this->ascenso; | 279 | return $this->ascenso; |
| 272 | } | 280 | } |
| 281 | + | ||
| 282 | + /** | ||
| 283 | + * Set institucion | ||
| 284 | + * | ||
| 285 | + * @param string $institucion | ||
| 286 | + * @return TutoresAscenso | ||
| 287 | + */ | ||
| 288 | + public function setInstitucion($institucion) | ||
| 289 | + { | ||
| 290 | + $this->institucion = $institucion; | ||
| 291 | + | ||
| 292 | + return $this; | ||
| 293 | + } | ||
| 294 | + | ||
| 295 | + /** | ||
| 296 | + * Get institucion | ||
| 297 | + * | ||
| 298 | + * @return string | ||
| 299 | + */ | ||
| 300 | + public function getInstitucion() | ||
| 301 | + { | ||
| 302 | + return $this->institucion; | ||
| 303 | + } | ||
| 273 | } | 304 | } |