From 261ba21510b6832df5df0366dd17e3657f6dcd69 Mon Sep 17 00:00:00 2001 From: Wilmer Ramones Date: Thu, 13 Oct 2016 09:55:17 -0400 Subject: [PATCH] creada la entidad para registrar la actividad del PIDA de los docentes --- src/AppBundle/Entity/AdscripcionPida.php | 332 ++++++------------------------- 1 file changed, 64 insertions(+), 268 deletions(-) diff --git a/src/AppBundle/Entity/AdscripcionPida.php b/src/AppBundle/Entity/AdscripcionPida.php index 2684e23..7c0078b 100644 --- a/src/AppBundle/Entity/AdscripcionPida.php +++ b/src/AppBundle/Entity/AdscripcionPida.php @@ -1,31 +1,25 @@ trabajo; - } - - public function setTrabajo($trabajo) - { - $this->trabajo = $trabajo; - - return $this; - } - - public function getPregrado() - { - return $this->pregrado; - } - - public function setPregrado($pregrado) - { - $this->pregrado = $pregrado; - - return $this; - } - - public function getPostgrado() - { - return $this->postgrado; - } - - public function setPostgrado($postgrado) - { - $this->postgrado = $postgrado; - - return $this; - } - - public function getAsistente() - { - return $this->asistente; - } - - public function setAsistente($asistente) - { - $this->asistente = $asistente; - - return $this; - } - - /** - * @return mixed - */ - public function getOposicion() - { - return $this->oposicion; - } - - /** - * @param mixed $oposicion - */ - public function setOposicion($oposicion) - { - $this->oposicion = $oposicion; - } - - /** - * @return mixed - */ - public function getAsociado() - { - return $this->asociado; - } - - /** - * @param mixed $asociado - */ - public function setAsociado($asociado) - { - $this->asociado = $asociado; - } - - /** - * @return mixed - */ - public function getAgreado() - { - return $this->agreado; - } - - /** - * @param mixed $agreado - */ - public function setAgreado($agreado) - { - $this->agreado = $agreado; - } - - /** - * @return mixed - */ - public function getTitular() - { - return $this->titular; - } - - /** - * @param mixed $titular - */ - public function setTitular($titular) - { - $this->titular = $titular; - } + /** * Get id @@ -313,30 +120,7 @@ class Adscripcion return $this->idRolInstitucion; } - - - /** - * Set idLineaInvestigacion - * - * @param \AppBundle\Entity\LineasInvestigacion $idLineaInvestigacion - * @return LineasInvestigacion - */ - public function setIdLineaInvestigacion(\AppBundle\Entity\LineasInvestigacion $idLineaInvestigacion = null) - { - $this->idLineaInvestigacion = $idLineaInvestigacion; - - return $this; - } - - /** - * Get idLineaIvestigacion - * - * @return \AppBundle\Entity\LineasInvestigacion - */ - public function getIdLineaInvestigacion() - { - return $this->idLineaInvestigacion; - } + @@ -390,47 +174,59 @@ class Adscripcion } - /** - * @return mixed + * Get fecha_ultima_actualizacion + * + * @return \DateTime */ - public function getTituloTrabajo() + public function getFechaUltimaActualizacion() { - return $this->tituloTrabajo; + return $this->fecha_ultima_actualizacion; } - /** - * @param mixed $tituloTrabajo + * Set idPlanHistoricoNacionalEstrategico + * + * @param \AppBundle\Entity\PlanHistoricoNacionalEstrategico $idPlanHistoricoNacionalEstrategico + * @return AdscripcionPida */ - public function setTituloTrabajo($tituloTrabajo) - { - $this->tituloTrabajo = $tituloTrabajo; - } - - - /** - * Set fecha_escala - * - * @param \DateTime $fecha_escala - * @return Comment - */ - public function setFechaIngreso($fecha_ingreso) - { - $this->fecha_ingreso = $fecha_ingreso; + public function setIdPlanHistoricoNacionalEstrategico(\AppBundle\Entity\PlanHistoricoNacionalEstrategico $idPlanHistoricoNacionalEstrategico = null) + { + $this->idPlanHistoricoNacionalEstrategico = $idPlanHistoricoNacionalEstrategico; - return $this; - } + return $this; + } - /** - * Get fecha_escala - * - * @return \DateTime - */ - public function getFechaIngreso() - { - return $this->fecha_ingreso; - } + /** + * Get idPlanHistoricoNacionalEstrategico + * + * @return \AppBundle\Entity\PlanHistoricoNacionalEstrategico + */ + public function getIdPlanHistoricoNacionalEstrategico() + { + return $this->idPlanHistoricoNacionalEstrategico; + } + /** + * Set idActividadDocente + * + * @param \AppBundle\Entity\ActividadDocente $idActividadDocente + * @return AdscripcionPida + */ + public function setIdActividadDocente(\AppBundle\Entity\ActividadDocente $idActividadDocente = null) + { + $this->idActividadDocente = $idActividadDocente; + + return $this; + } + /** + * Get idActividadDocente + * + * @return \AppBundle\Entity\ActividadDocente + */ + public function getIdActividadDocente() + { + return $this->idActividadDocente; + } } -- 2.0.0