From 7a1787c1adf985501517ff2178e03881fc3b319a Mon Sep 17 00:00:00 2001 From: Wilmer Ramones Date: Thu, 13 Oct 2016 07:47:46 -0400 Subject: [PATCH] creada la entidad de objetivo historico del plan de la patria --- src/AppBundle/Entity/PlanObjetivoHistorico.php | 112 ++++++++++++++++++++++++ src/AppBundle/Entity/PlanObjetivoHistorico.php~ | 56 ++++++++++++ 2 files changed, 168 insertions(+) create mode 100644 src/AppBundle/Entity/PlanObjetivoHistorico.php create mode 100644 src/AppBundle/Entity/PlanObjetivoHistorico.php~ diff --git a/src/AppBundle/Entity/PlanObjetivoHistorico.php b/src/AppBundle/Entity/PlanObjetivoHistorico.php new file mode 100644 index 0000000..f26e9dd --- /dev/null +++ b/src/AppBundle/Entity/PlanObjetivoHistorico.php @@ -0,0 +1,112 @@ +nombre; + } + + + + /** + * Set nombre + * + * @param string $nombre + * @return PlanObjetivoHistorico + */ + public function setNombre($nombre) + { + $this->nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Set numero + * + * @param integer $numero + * @return PlanObjetivoHistorico + */ + public function setNumero($numero) + { + $this->numero = $numero; + + return $this; + } + + /** + * Get numero + * + * @return integer + */ + public function getNumero() + { + return $this->numero; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } +} diff --git a/src/AppBundle/Entity/PlanObjetivoHistorico.php~ b/src/AppBundle/Entity/PlanObjetivoHistorico.php~ new file mode 100644 index 0000000..4800d6b --- /dev/null +++ b/src/AppBundle/Entity/PlanObjetivoHistorico.php~ @@ -0,0 +1,56 @@ +nombre; + } + + +} \ No newline at end of file -- 2.0.0