Gina Next Generation
All Classes Namespaces Files Functions Variables
RouteReal.php
Go to the documentation of this file.
00001 <?php
00002 
00003 namespace Etrali\GinangBundle\Entity;
00004 
00005 use Doctrine\ORM\Mapping as ORM;
00006 
00007 /**
00008  * RouteReal
00009  *
00010  * @ORM\Table(name="route_real")
00011  * @ORM\Entity
00012  */
00013 class RouteReal
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_route_real", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idRouteReal;
00023 
00024     /**
00025      * @var string
00026      *
00027      * @ORM\Column(name="cd_route_real", type="string", length=50, nullable=true)
00028      */
00029     private $cdRouteReal;
00030 
00031     /**
00032      * @var string
00033      *
00034      * @ORM\Column(name="lb_route_real", type="string", length=255, nullable=true)
00035      */
00036     private $lbRouteReal;
00037 
00038     /**
00039      * @var boolean
00040      *
00041      * @ORM\Column(name="bl_deactivated", type="boolean", nullable=true)
00042      */
00043     private $blDeactivated;
00044 
00045 
00046 
00047     /**
00048      * Get idRouteReal
00049      *
00050      * @return integer 
00051      */
00052     public function getIdRouteReal()
00053     {
00054         return $this->idRouteReal;
00055     }
00056 
00057     /**
00058      * Set cdRouteReal
00059      *
00060      * @param string $cdRouteReal
00061      * @return RouteReal
00062      */
00063     public function setCdRouteReal($cdRouteReal)
00064     {
00065         $this->cdRouteReal = $cdRouteReal;
00066     
00067         return $this;
00068     }
00069 
00070     /**
00071      * Get cdRouteReal
00072      *
00073      * @return string 
00074      */
00075     public function getCdRouteReal()
00076     {
00077         return $this->cdRouteReal;
00078     }
00079 
00080     /**
00081      * Set lbRouteReal
00082      *
00083      * @param string $lbRouteReal
00084      * @return RouteReal
00085      */
00086     public function setLbRouteReal($lbRouteReal)
00087     {
00088         $this->lbRouteReal = $lbRouteReal;
00089     
00090         return $this;
00091     }
00092 
00093     /**
00094      * Get lbRouteReal
00095      *
00096      * @return string 
00097      */
00098     public function getLbRouteReal()
00099     {
00100         return $this->lbRouteReal;
00101     }
00102 
00103     /**
00104      * Set blDeactivated
00105      *
00106      * @param boolean $blDeactivated
00107      * @return RouteReal
00108      */
00109     public function setBlDeactivated($blDeactivated)
00110     {
00111         $this->blDeactivated = $blDeactivated;
00112     
00113         return $this;
00114     }
00115 
00116     /**
00117      * Get blDeactivated
00118      *
00119      * @return boolean 
00120      */
00121     public function getBlDeactivated()
00122     {
00123         return $this->blDeactivated;
00124     }
00125 }
 All Classes Namespaces Files Functions Variables