id; } /** * Set descripcion * * @param string $descripcion * * @return aldea */ public function setDescripcion($descripcion) { $this->descripcion = $descripcion; return $this; } /** * Get descripcion * * @return string */ public function getDescripcion() { return $this->descripcion; } /** * Set codigoSucre * * @param integer $codigoSucre * * @return aldea */ public function setCodigoSucre($codigoSucre) { $this->codigoSucre = $codigoSucre; return $this; } /** * Get codigoSucre * * @return int */ public function getCodigoSucre() { return $this->codigoSucre; } /** * Set codigoAldea * * @param integer $codigoAldea * * @return aldea */ public function setCodigoAldea($codigoAldea) { $this->codigoAldea = $codigoAldea; return $this; } /** * Get codigoAldea * * @return int */ public function getCodigoAldea() { return $this->codigoAldea; } /** * Set estatus * * @param boolean $estatus * * @return aldea */ public function setEstatus($estatus) { $this->estatus = $estatus; return $this; } /** * Get estatus * * @return bool */ public function getEstatus() { return $this->estatus; } public function __toString(){ return $this->getDescripcion(); } }