id = $id; return $this; } /** * Get the value of id. * * @return integer */ public function getId() { return $this->id; } /** * Set the value of concepto. * * @param string $concepto * @return \UBV\SurUbvBundle\Entity\RequerimientoProyecto */ public function setConcepto($concepto) { $this->concepto = $concepto; return $this; } /** * Get the value of concepto. * * @return string */ public function getConcepto() { return $this->concepto; } /** * Set the value of cantidad. * * @param integer $cantidad * @return \UBV\SurUbvBundle\Entity\RequerimientoProyecto */ public function setCantidad($cantidad) { $this->cantidad = $cantidad; return $this; } /** * Get the value of cantidad. * * @return integer */ public function getCantidad() { return $this->cantidad; } /** * Set the value of costo. * * @param string $costo * @return \UBV\SurUbvBundle\Entity\RequerimientoProyecto */ public function setCosto($costo) { $this->costo = $costo; return $this; } /** * Get the value of costo. * * @return string */ public function getCosto() { return $this->costo; } /** * Set the value of descripcion. * * @param string $descripcion * @return \UBV\SurUbvBundle\Entity\RequerimientoProyecto */ public function setDescripcion($descripcion) { $this->descripcion = $descripcion; return $this; } /** * Get the value of descripcion. * * @return string */ public function getDescripcion() { return $this->descripcion; } /** * Set the value of proposito. * * @param string $proposito * @return \UBV\SurUbvBundle\Entity\RequerimientoProyecto */ public function setProposito($proposito) { $this->proposito = $proposito; return $this; } /** * Get the value of proposito. * * @return string */ public function getProposito() { return $this->proposito; } /** * Set ProyectoEtapa entity (many to one). * * @param \UBV\SurUbvBundle\Entity\ProyectoEtapa $proyectoEtapa * @return \UBV\SurUbvBundle\Entity\RequerimientoProyecto */ public function setProyectoEtapa(ProyectoEtapa $proyectoEtapa = null) { $this->proyectoEtapa = $proyectoEtapa; return $this; } /** * Get ProyectoEtapa entity (many to one). * * @return \UBV\SurUbvBundle\Entity\ProyectoEtapa */ public function getProyectoEtapa() { return $this->proyectoEtapa; } /** * Set AporteTipo entity (many to one). * * @param \UBV\SurUbvBundle\Entity\AporteTipo $aporteTipo * @return \UBV\SurUbvBundle\Entity\RequerimientoProyecto */ public function setAporteTipo(AporteTipo $aporteTipo = null) { $this->aporteTipo = $aporteTipo; return $this; } /** * Get AporteTipo entity (many to one). * * @return \UBV\SurUbvBundle\Entity\AporteTipo */ public function getAporteTipo() { return $this->aporteTipo; } public function __sleep() { return array('id', 'proyecto_etapa_id', 'concepto', 'cantidad', 'costo', 'descripcion', 'proposito', 'aporte_tipo_id'); } }