Gina Next Generation
 All Classes Namespaces Files Functions Variables
LinkProtocol.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  * LinkProtocol
00009  *
00010  * @ORM\Table(name="link_protocol")
00011  * @ORM\Entity
00012  */
00013 class LinkProtocol
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_link_protocol", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idLinkProtocol;
00023 
00024     /**
00025      * @var string
00026      *
00027      * @ORM\Column(name="cd_link_protocol", type="string", length=100, nullable=true)
00028      */
00029     private $cdLinkProtocol;
00030 
00031     /**
00032      * @var string
00033      *
00034      * @ORM\Column(name="lb_link_protocol", type="string", length=255, nullable=true)
00035      */
00036     private $lbLinkProtocol;
00037 
00038     /**
00039      * @var integer
00040      *
00041      * @ORM\Column(name="nb_rate", type="integer", nullable=true)
00042      */
00043     private $nbRate;
00044 
00045     /**
00046      * @var boolean
00047      *
00048      * @ORM\Column(name="bl_deactivated", type="boolean", nullable=true)
00049      */
00050     private $blDeactivated;
00051 
00052 
00053 
00054     /**
00055      * Get idLinkProtocol
00056      *
00057      * @return integer 
00058      */
00059     public function getIdLinkProtocol()
00060     {
00061         return $this->idLinkProtocol;
00062     }
00063 
00064     /**
00065      * Set cdLinkProtocol
00066      *
00067      * @param string $cdLinkProtocol
00068      * @return LinkProtocol
00069      */
00070     public function setCdLinkProtocol($cdLinkProtocol)
00071     {
00072         $this->cdLinkProtocol = $cdLinkProtocol;
00073     
00074         return $this;
00075     }
00076 
00077     /**
00078      * Get cdLinkProtocol
00079      *
00080      * @return string 
00081      */
00082     public function getCdLinkProtocol()
00083     {
00084         return $this->cdLinkProtocol;
00085     }
00086 
00087     /**
00088      * Set lbLinkProtocol
00089      *
00090      * @param string $lbLinkProtocol
00091      * @return LinkProtocol
00092      */
00093     public function setLbLinkProtocol($lbLinkProtocol)
00094     {
00095         $this->lbLinkProtocol = $lbLinkProtocol;
00096     
00097         return $this;
00098     }
00099 
00100     /**
00101      * Get lbLinkProtocol
00102      *
00103      * @return string 
00104      */
00105     public function getLbLinkProtocol()
00106     {
00107         return $this->lbLinkProtocol;
00108     }
00109 
00110     /**
00111      * Set nbRate
00112      *
00113      * @param integer $nbRate
00114      * @return LinkProtocol
00115      */
00116     public function setNbRate($nbRate)
00117     {
00118         $this->nbRate = $nbRate;
00119     
00120         return $this;
00121     }
00122 
00123     /**
00124      * Get nbRate
00125      *
00126      * @return integer 
00127      */
00128     public function getNbRate()
00129     {
00130         return $this->nbRate;
00131     }
00132 
00133     /**
00134      * Set blDeactivated
00135      *
00136      * @param boolean $blDeactivated
00137      * @return LinkProtocol
00138      */
00139     public function setBlDeactivated($blDeactivated)
00140     {
00141         $this->blDeactivated = $blDeactivated;
00142     
00143         return $this;
00144     }
00145 
00146     /**
00147      * Get blDeactivated
00148      *
00149      * @return boolean 
00150      */
00151     public function getBlDeactivated()
00152     {
00153         return $this->blDeactivated;
00154     }
00155 }
 All Classes Namespaces Files Functions Variables