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