Gina Next Generation
 All Classes Namespaces Files Functions Variables
Screen.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  * Screen
00009  *
00010  * @ORM\Table(name="screen")
00011  * @ORM\Entity
00012  */
00013 class Screen
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_screen", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idScreen;
00023 
00024     /**
00025      * @var string
00026      *
00027      * @ORM\Column(name="lb_screen", type="string", length=100, nullable=true)
00028      */
00029     private $lbScreen;
00030 
00031     /**
00032      * @var boolean
00033      *
00034      * @ORM\Column(name="bl_public", type="boolean", nullable=true)
00035      */
00036     private $blPublic;
00037 
00038 
00039 
00040     /**
00041      * Get idScreen
00042      *
00043      * @return integer 
00044      */
00045     public function getIdScreen()
00046     {
00047         return $this->idScreen;
00048     }
00049 
00050     /**
00051      * Set lbScreen
00052      *
00053      * @param string $lbScreen
00054      * @return Screen
00055      */
00056     public function setLbScreen($lbScreen)
00057     {
00058         $this->lbScreen = $lbScreen;
00059     
00060         return $this;
00061     }
00062 
00063     /**
00064      * Get lbScreen
00065      *
00066      * @return string 
00067      */
00068     public function getLbScreen()
00069     {
00070         return $this->lbScreen;
00071     }
00072 
00073     /**
00074      * Set blPublic
00075      *
00076      * @param boolean $blPublic
00077      * @return Screen
00078      */
00079     public function setBlPublic($blPublic)
00080     {
00081         $this->blPublic = $blPublic;
00082     
00083         return $this;
00084     }
00085 
00086     /**
00087      * Get blPublic
00088      *
00089      * @return boolean 
00090      */
00091     public function getBlPublic()
00092     {
00093         return $this->blPublic;
00094     }
00095 }
 All Classes Namespaces Files Functions Variables