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