From 33dbe7efa0c9e354fcd0073414084d8e9f90c9fc Mon Sep 17 00:00:00 2001 From: Wilmer Ramones Date: Fri, 29 Jul 2016 10:09:23 -0400 Subject: [PATCH] creada toda la estructra de la base de datos y el modelo de doctrine para el registro de calificaciones --- src/AppBundle/Entity/Calificacion.php | 138 +++++++++++++++++ src/AppBundle/Entity/CondicionCalificacion.php | 96 ++++++++++++ src/AppBundle/Entity/Escala.php | 101 ++++++++++++ src/AppBundle/Entity/Escala.php~ | 45 ++++++ src/AppBundle/Entity/EstatusNota.php | 66 ++++++++ src/AppBundle/Entity/InscripcionCalificacion.php | 136 ++++++++++++++++ src/AppBundle/Entity/InscripcionCalificacion.php~ | 113 ++++++++++++++ src/AppBundle/Entity/NomenclaturaNota.php | 98 ++++++++++++ src/AppBundle/Entity/NomenclaturaNota.php~ | 42 +++++ src/AppBundle/Entity/Nota.php | 106 +++++++++++++ src/AppBundle/Entity/Nota.php~ | 50 ++++++ src/AppBundle/Entity/PlanificacionCalificacion.php | 172 +++++++++++++++++++++ .../Entity/PlanificacionCalificacion.php~ | 70 +++++++++ src/AppBundle/Entity/Porcentaje.php | 74 +++++++++ 14 files changed, 1307 insertions(+) create mode 100644 src/AppBundle/Entity/Calificacion.php create mode 100644 src/AppBundle/Entity/CondicionCalificacion.php create mode 100644 src/AppBundle/Entity/Escala.php create mode 100644 src/AppBundle/Entity/Escala.php~ create mode 100644 src/AppBundle/Entity/EstatusNota.php create mode 100644 src/AppBundle/Entity/InscripcionCalificacion.php create mode 100644 src/AppBundle/Entity/InscripcionCalificacion.php~ create mode 100644 src/AppBundle/Entity/NomenclaturaNota.php create mode 100644 src/AppBundle/Entity/NomenclaturaNota.php~ create mode 100644 src/AppBundle/Entity/Nota.php create mode 100644 src/AppBundle/Entity/Nota.php~ create mode 100644 src/AppBundle/Entity/PlanificacionCalificacion.php create mode 100644 src/AppBundle/Entity/PlanificacionCalificacion.php~ create mode 100644 src/AppBundle/Entity/Porcentaje.php diff --git a/src/AppBundle/Entity/Calificacion.php b/src/AppBundle/Entity/Calificacion.php new file mode 100644 index 0000000..25a37ff --- /dev/null +++ b/src/AppBundle/Entity/Calificacion.php @@ -0,0 +1,138 @@ +id; + } + + /** + * Set idPorcentaje + * + * @param \AppBundle\Entity\Porcentaje $idPorcentaje + * @return Calificacion + */ + public function setIdPorcentaje(\AppBundle\Entity\Porcentaje $idPorcentaje = null) + { + $this->idPorcentaje = $idPorcentaje; + + return $this; + } + + /** + * Get idPorcentaje + * + * @return \AppBundle\Entity\Porcentaje + */ + public function getIdPorcentaje() + { + return $this->idPorcentaje; + } + + /** + * Set idNota + * + * @param \AppBundle\Entity\Nota $idNota + * @return Calificacion + */ + public function setIdNota(\AppBundle\Entity\Nota $idNota = null) + { + $this->idNota = $idNota; + + return $this; + } + + /** + * Get idNota + * + * @return \AppBundle\Entity\Nota + */ + public function getIdNota() + { + return $this->idNota; + } + + + /** + * Set idCondicionCalificacion + * + * @param \AppBundle\Entity\CondicionCalificacion $idCondicionCalificacion + * @return Calificacion + */ + public function setIdCondicionCalificacion(\AppBundle\Entity\CondicionCalificacion $idCondicionCalificacion = null) + { + $this->idCondicionCalificacion = $idCondicionCalificacion; + + return $this; + } + + /** + * Get idCondicionCalificacion + * + * @return \AppBundle\Entity\CondicionCalificacion + */ + public function getIdCondicionCalificacion() + { + return $this->idCondicionCalificacion; + } +} \ No newline at end of file diff --git a/src/AppBundle/Entity/CondicionCalificacion.php b/src/AppBundle/Entity/CondicionCalificacion.php new file mode 100644 index 0000000..7c094aa --- /dev/null +++ b/src/AppBundle/Entity/CondicionCalificacion.php @@ -0,0 +1,96 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Set siglas + * + * @param string $siglas + * @return CondicionCalificacion + */ + public function setSiglas($siglas) + { + $this->siglas = $siglas; + + return $this; + } + + /** + * Get siglas + * + * @return string + */ + public function getSiglas() + { + return $this->siglas; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } +} \ No newline at end of file diff --git a/src/AppBundle/Entity/Escala.php b/src/AppBundle/Entity/Escala.php new file mode 100644 index 0000000..56b5d60 --- /dev/null +++ b/src/AppBundle/Entity/Escala.php @@ -0,0 +1,101 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } + + /** + * Set idEstatus + * + * @param \AppBundle\Entity\Estatus $idEstatus + * @return Escala + */ + public function setIdEstatus(\AppBundle\Entity\Estatus $idEstatus) + { + $this->idEstatus = $idEstatus; + + return $this; + } + + /** + * Get idEstatus + * + * @return \AppBundle\Entity\Estatus + */ + public function getIdEstatus() + { + return $this->idEstatus; + } +} diff --git a/src/AppBundle/Entity/Escala.php~ b/src/AppBundle/Entity/Escala.php~ new file mode 100644 index 0000000..00c22de --- /dev/null +++ b/src/AppBundle/Entity/Escala.php~ @@ -0,0 +1,45 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } +} \ No newline at end of file diff --git a/src/AppBundle/Entity/InscripcionCalificacion.php b/src/AppBundle/Entity/InscripcionCalificacion.php new file mode 100644 index 0000000..b6b4c3b --- /dev/null +++ b/src/AppBundle/Entity/InscripcionCalificacion.php @@ -0,0 +1,136 @@ +id; + } + + /** + * Set idInscripcion + * + * @param \AppBundle\Entity\Inscripcion $idInscripcion + * @return InscripcionCalificacion + */ + public function setIdInscripcion(\AppBundle\Entity\Inscripcion $idInscripcion = null) + { + $this->idInscripcion = $idInscripcion; + + return $this; + } + + /** + * Get idInscripcion + * + * @return \AppBundle\Entity\Inscripcion + */ + public function getIdInscripcion() + { + return $this->idInscripcion; + } + + /** + * Set idCalificacion + * + * @param \AppBundle\Entity\Calificacion $idCalificacion + * @return InscripcionCalificacion + */ + public function setIdCalificacion(\AppBundle\Entity\Calificacion $idCalificacion = null) + { + $this->idCalificacion = $idCalificacion; + + return $this; + } + + /** + * Get idCalificacion + * + * @return \AppBundle\Entity\Calificacion + */ + public function getIdCalificacion() + { + return $this->idCalificacion; + } + + /** + * Set idEstatusNota + * + * @param \AppBundle\Entity\EstatusNota $idEstatusNota + * @return InscripcionCalificacion + */ + public function setIdEstatusNota(\AppBundle\Entity\EstatusNota $idEstatusNota) + { + $this->idEstatusNota = $idEstatusNota; + + return $this; + } + + /** + * Get idEstatusNota + * + * @return \AppBundle\Entity\EstatusNota + */ + public function getIdEstatusNota() + { + return $this->idEstatusNota; + } +} diff --git a/src/AppBundle/Entity/InscripcionCalificacion.php~ b/src/AppBundle/Entity/InscripcionCalificacion.php~ new file mode 100644 index 0000000..65438f8 --- /dev/null +++ b/src/AppBundle/Entity/InscripcionCalificacion.php~ @@ -0,0 +1,113 @@ +id; + } + + /** + * Set idInscripcion + * + * @param \AppBundle\Entity\Inscripcion $idInscripcion + * @return InscripcionCalificacion + */ + public function setIdInscripcion(\AppBundle\Entity\Inscripcion $idInscripcion = null) + { + $this->idInscripcion = $idInscripcion; + + return $this; + } + + /** + * Get idInscripcion + * + * @return \AppBundle\Entity\Inscripcion + */ + public function getIdInscripcion() + { + return $this->idInscripcion; + } + + /** + * Set idCalificacion + * + * @param \AppBundle\Entity\Calificacion $idCalificacion + * @return InscripcionCalificacion + */ + public function setIdCalificacion(\AppBundle\Entity\Calificacion $idCalificacion = null) + { + $this->idCalificacion = $idCalificacion; + + return $this; + } + + /** + * Get idCalificacion + * + * @return \AppBundle\Entity\Calificacion + */ + public function getIdCalificacion() + { + return $this->idCalificacion; + } +} \ No newline at end of file diff --git a/src/AppBundle/Entity/NomenclaturaNota.php b/src/AppBundle/Entity/NomenclaturaNota.php new file mode 100644 index 0000000..eb3c20a --- /dev/null +++ b/src/AppBundle/Entity/NomenclaturaNota.php @@ -0,0 +1,98 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Set descripcion + * + * @param string $descripcion + * @return NomenclaturaNota + */ + public function setDescripcion($descripcion) + { + $this->descripcion = $descripcion; + + return $this; + } + + /** + * Get descripcion + * + * @return string + */ + public function getDescripcion() + { + return $this->descripcion; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } +} diff --git a/src/AppBundle/Entity/NomenclaturaNota.php~ b/src/AppBundle/Entity/NomenclaturaNota.php~ new file mode 100644 index 0000000..147d29a --- /dev/null +++ b/src/AppBundle/Entity/NomenclaturaNota.php~ @@ -0,0 +1,42 @@ +id; + } + + /** + * Set idNomenclaturaNota + * + * @param \AppBundle\Entity\NomenclaturaNota $idNomenclaturaNota + * @return Nota + */ + public function setIdNomenclaturaNota(\AppBundle\Entity\NomenclaturaNota $idNomenclaturaNota) + { + $this->idNomenclaturaNota = $idNomenclaturaNota; + + return $this; + } + + /** + * Get idNomenclaturaNota + * + * @return \AppBundle\Entity\NomenclaturaNota + */ + public function getIdNomenclaturaNota() + { + return $this->idNomenclaturaNota; + } + + /** + * Set idEscala + * + * @param \AppBundle\Entity\Escala $idEscala + * @return Nota + */ + public function setIdEscala(\AppBundle\Entity\Escala $idEscala) + { + $this->idEscala = $idEscala; + + return $this; + } + + /** + * Get idEscala + * + * @return \AppBundle\Entity\Escala + */ + public function getIdEscala() + { + return $this->idEscala; + } +} diff --git a/src/AppBundle/Entity/Nota.php~ b/src/AppBundle/Entity/Nota.php~ new file mode 100644 index 0000000..9558d5a --- /dev/null +++ b/src/AppBundle/Entity/Nota.php~ @@ -0,0 +1,50 @@ +id; + } + + /** + * Set idPlanificacionSeccion + * + * @param \AppBundle\Entity\PlanificacionSeccion $idPlanificacionSeccion + * @return PlanificacionCalificacion + */ + public function setIdPlanificacionSeccion(\AppBundle\Entity\PlanificacionSeccion $idPlanificacionSeccion) + { + $this->idPlanificacionSeccion = $idPlanificacionSeccion; + + return $this; + } + + /** + * Get idPlanificacionSeccion + * + * @return \AppBundle\Entity\PlanificacionSeccion + */ + public function getIdPlanificacionSeccion() + { + return $this->idPlanificacionSeccion; + } + + /** + * Set idInscripcion + * + * @param \AppBundle\Entity\Inscripcion $idInscripcion + * @return PlanificacionCalificacion + */ + public function setIdInscripcion(\AppBundle\Entity\Inscripcion $idInscripcion) + { + $this->idInscripcion = $idInscripcion; + + return $this; + } + + /** + * Get idInscripcion + * + * @return \AppBundle\Entity\Inscripcion + */ + public function getIdInscripcion() + { + return $this->idInscripcion; + } + + /** + * Set idCalificacion + * + * @param \AppBundle\Entity\Calificacion $idCalificacion + * @return PlanificacionCalificacion + */ + public function setIdCalificacion(\AppBundle\Entity\Calificacion $idCalificacion) + { + $this->idCalificacion = $idCalificacion; + + return $this; + } + + /** + * Get idCalificacion + * + * @return \AppBundle\Entity\Calificacion + */ + public function getIdCalificacion() + { + return $this->idCalificacion; + } + + /** + * Set idEstatusNota + * + * @param \AppBundle\Entity\EstatusNota $idEstatusNota + * @return PlanificacionCalificacion + */ + public function setIdEstatusNota(\AppBundle\Entity\EstatusNota $idEstatusNota) + { + $this->idEstatusNota = $idEstatusNota; + + return $this; + } + + /** + * Get idEstatusNota + * + * @return \AppBundle\Entity\EstatusNota + */ + public function getIdEstatusNota() + { + return $this->idEstatusNota; + } +} diff --git a/src/AppBundle/Entity/PlanificacionCalificacion.php~ b/src/AppBundle/Entity/PlanificacionCalificacion.php~ new file mode 100644 index 0000000..25100f5 --- /dev/null +++ b/src/AppBundle/Entity/PlanificacionCalificacion.php~ @@ -0,0 +1,70 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } + + /** + * @return string + */ + public function __toString() + { + return $this->getNombre(); + } +} \ No newline at end of file -- 2.0.0