From 3522f897ea9aba21945dc55e3aafa0720720bade Mon Sep 17 00:00:00 2001 From: Wilmer Date: Fri, 24 Mar 2017 11:36:42 -0400 Subject: [PATCH] =?UTF-8?q?se=20a=C3=B1adio=20la=20entidad=20de=20caducida?= =?UTF-8?q?d=20del=20PIDA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/AppBundle/Entity/PidaCaducidad.php | 136 +++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 src/AppBundle/Entity/PidaCaducidad.php diff --git a/src/AppBundle/Entity/PidaCaducidad.php b/src/AppBundle/Entity/PidaCaducidad.php new file mode 100644 index 0000000..65d40a0 --- /dev/null +++ b/src/AppBundle/Entity/PidaCaducidad.php @@ -0,0 +1,136 @@ +id; + } + + /** + * Set fechaInicio + * + * @param \DateTime $fechaInicio + * @return PidaCaducidad + */ + public function setFechaInicio($fechaInicio) + { + $this->fechaInicio = $fechaInicio; + + return $this; + } + + /** + * Get fechaInicio + * + * @return \DateTime + */ + public function getFechaInicio() + { + return $this->fechaInicio; + } + + /** + * Set fechaFinal + * + * @param \DateTime $fechaFinal + * @return PidaCaducidad + */ + public function setFechaFinal($fechaFinal) + { + $this->fechaFinal = $fechaFinal; + + return $this; + } + + /** + * Get fechaFinal + * + * @return \DateTime + */ + public function getFechaFinal() + { + return $this->fechaFinal; + } + + /** + * Set idDocenteServicio + * + * @param \AppBundle\Entity\DocenteServicio $idDocenteServicio + * @return PidaCaducidad + */ + public function setIdDocenteServicio(\AppBundle\Entity\DocenteServicio $idDocenteServicio) + { + $this->idDocenteServicio = $idDocenteServicio; + + return $this; + } + + /** + * Get idDocenteServicio + * + * @return \AppBundle\Entity\DocenteServicio + */ + public function getIdDocenteServicio() + { + return $this->idDocenteServicio; + } +} -- 2.0.0