Gina Next Generation
 All Classes Namespaces Files Functions Variables
EquipmentCategory.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  * EquipmentCategory
00009  *
00010  * @ORM\Table(name="equipment_category")
00011  * @ORM\Entity
00012  */
00013 class EquipmentCategory
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_equipment_category", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idEquipmentCategory;
00023 
00024     /**
00025      * @var string
00026      *
00027      * @ORM\Column(name="lb_equipment_category", type="string", length=45, nullable=true)
00028      */
00029     private $lbEquipmentCategory;
00030 
00031 
00032 
00033     /**
00034      * Get idEquipmentCategory
00035      *
00036      * @return integer 
00037      */
00038     public function getIdEquipmentCategory()
00039     {
00040         return $this->idEquipmentCategory;
00041     }
00042 
00043     /**
00044      * Set lbEquipmentCategory
00045      *
00046      * @param string $lbEquipmentCategory
00047      * @return EquipmentCategory
00048      */
00049     public function setLbEquipmentCategory($lbEquipmentCategory)
00050     {
00051         $this->lbEquipmentCategory = $lbEquipmentCategory;
00052     
00053         return $this;
00054     }
00055 
00056     /**
00057      * Get lbEquipmentCategory
00058      *
00059      * @return string 
00060      */
00061     public function getLbEquipmentCategory()
00062     {
00063         return $this->lbEquipmentCategory;
00064     }
00065 }
 All Classes Namespaces Files Functions Variables