diff --git a/src/AppBundle/Entity/PlanHistoricoNacional.php b/src/AppBundle/Entity/PlanHistoricoNacional.php new file mode 100644 index 0000000..3729b44 --- /dev/null +++ b/src/AppBundle/Entity/PlanHistoricoNacional.php @@ -0,0 +1,140 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Set numero + * + * @param integer $numero + * @return PlanHistoricoNacional + */ + 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; + } + + /** + * Set idPlanObjetivoHistorico + * + * @param \AppBundle\Entity\PlanObjetivoHistorico $idPlanObjetivoHistorico + * @return PlanHistoricoNacional + */ + public function setIdPlanObjetivoHistorico(\AppBundle\Entity\PlanObjetivoHistorico $idPlanObjetivoHistorico) + { + $this->idPlanObjetivoHistorico = $idPlanObjetivoHistorico; + + return $this; + } + + /** + * Get idPlanObjetivoHistorico + * + * @return \AppBundle\Entity\PlanObjetivoHistorico + */ + public function getIdPlanObjetivoHistorico() + { + return $this->idPlanObjetivoHistorico; + } + + + /** + * Get nombre + * + * @return string + */ + public function __toString() { + return $this->getNombre(); + } + + +} diff --git a/src/AppBundle/Entity/PlanHistoricoNacionalEstrategico.php b/src/AppBundle/Entity/PlanHistoricoNacionalEstrategico.php new file mode 100644 index 0000000..a52cce1 --- /dev/null +++ b/src/AppBundle/Entity/PlanHistoricoNacionalEstrategico.php @@ -0,0 +1,136 @@ +nombre = $nombre; + + return $this; + } + + /** + * Get nombre + * + * @return string + */ + public function getNombre() + { + return $this->nombre; + } + + /** + * Set codigo + * + * @param string $codigo + * @return Parroquia + */ + public function setCodigo($codigo) + { + $this->codigo = $codigo; + + return $this; + } + + /** + * Get codigo + * + * @return string + */ + public function getCodigo() + { + return $this->codigo; + } + + /** + * Get id + * + * @return integer + */ + public function getId() + { + return $this->id; + } + + /** + * Set idMunicipio + * + * @param \AppBundle\Entity\Municipio $idMunicipio + * @return Parroquia + */ + public function setIdMunicipio(\AppBundle\Entity\Municipio $idMunicipio = null) + { + $this->idMunicipio = $idMunicipio; + + return $this; + } + + /** + * Get idMunicipio + * + * @return \AppBundle\Entity\Municipio + */ + public function getIdMunicipio() + { + return $this->idMunicipio; + } +}