Gina Next Generation
 All Classes Namespaces Files Functions Variables
CabinetType.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  * CabinetType
00009  *
00010  * @ORM\Table(name="cabinet_type")
00011  * @ORM\Entity
00012  */
00013 class CabinetType
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_cabinet_type", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idCabinetType;
00023 
00024     /**
00025      * @var string
00026      *
00027      * @ORM\Column(name="cd_cabinet_type", type="string", length=15, nullable=true)
00028      */
00029     private $cdCabinetType;
00030 
00031     /**
00032      * @var string
00033      *
00034      * @ORM\Column(name="lb_cabinet_type", type="string", length=100, nullable=true)
00035      */
00036     private $lbCabinetType;
00037 
00038     /**
00039      * @var float
00040      *
00041      * @ORM\Column(name="nb_height", type="decimal", nullable=true)
00042      */
00043     private $nbHeight;
00044 
00045     /**
00046      * @var float
00047      *
00048      * @ORM\Column(name="nb_width", type="decimal", nullable=true)
00049      */
00050     private $nbWidth;
00051 
00052     /**
00053      * @var string
00054      *
00055      * @ORM\Column(name="url_image", type="string", length=100, nullable=true)
00056      */
00057     private $urlImage;
00058 
00059     /**
00060      * @var string
00061      *
00062      * @ORM\Column(name="url_document", type="string", length=100, nullable=true)
00063      */
00064     private $urlDocument;
00065 
00066     /**
00067      * @var \DateTime
00068      *
00069      * @ORM\Column(name="dt_start", type="datetime", nullable=true)
00070      */
00071     private $dtStart;
00072 
00073     /**
00074      * @var \DateTime
00075      *
00076      * @ORM\Column(name="dt_end", type="datetime", nullable=true)
00077      */
00078     private $dtEnd;
00079 
00080     /**
00081      * @var boolean
00082      *
00083      * @ORM\Column(name="bl_deactivated", type="boolean", nullable=true)
00084      */
00085     private $blDeactivated;
00086 
00087 
00088 
00089     /**
00090      * Get idCabinetType
00091      *
00092      * @return integer 
00093      */
00094     public function getIdCabinetType()
00095     {
00096         return $this->idCabinetType;
00097     }
00098 
00099     /**
00100      * Set cdCabinetType
00101      *
00102      * @param string $cdCabinetType
00103      * @return CabinetType
00104      */
00105     public function setCdCabinetType($cdCabinetType)
00106     {
00107         $this->cdCabinetType = $cdCabinetType;
00108     
00109         return $this;
00110     }
00111 
00112     /**
00113      * Get cdCabinetType
00114      *
00115      * @return string 
00116      */
00117     public function getCdCabinetType()
00118     {
00119         return $this->cdCabinetType;
00120     }
00121 
00122     /**
00123      * Set lbCabinetType
00124      *
00125      * @param string $lbCabinetType
00126      * @return CabinetType
00127      */
00128     public function setLbCabinetType($lbCabinetType)
00129     {
00130         $this->lbCabinetType = $lbCabinetType;
00131     
00132         return $this;
00133     }
00134 
00135     /**
00136      * Get lbCabinetType
00137      *
00138      * @return string 
00139      */
00140     public function getLbCabinetType()
00141     {
00142         return $this->lbCabinetType;
00143     }
00144 
00145     /**
00146      * Set nbHeight
00147      *
00148      * @param float $nbHeight
00149      * @return CabinetType
00150      */
00151     public function setNbHeight($nbHeight)
00152     {
00153         $this->nbHeight = $nbHeight;
00154     
00155         return $this;
00156     }
00157 
00158     /**
00159      * Get nbHeight
00160      *
00161      * @return float 
00162      */
00163     public function getNbHeight()
00164     {
00165         return $this->nbHeight;
00166     }
00167 
00168     /**
00169      * Set nbWidth
00170      *
00171      * @param float $nbWidth
00172      * @return CabinetType
00173      */
00174     public function setNbWidth($nbWidth)
00175     {
00176         $this->nbWidth = $nbWidth;
00177     
00178         return $this;
00179     }
00180 
00181     /**
00182      * Get nbWidth
00183      *
00184      * @return float 
00185      */
00186     public function getNbWidth()
00187     {
00188         return $this->nbWidth;
00189     }
00190 
00191     /**
00192      * Set urlImage
00193      *
00194      * @param string $urlImage
00195      * @return CabinetType
00196      */
00197     public function setUrlImage($urlImage)
00198     {
00199         $this->urlImage = $urlImage;
00200     
00201         return $this;
00202     }
00203 
00204     /**
00205      * Get urlImage
00206      *
00207      * @return string 
00208      */
00209     public function getUrlImage()
00210     {
00211         return $this->urlImage;
00212     }
00213 
00214     /**
00215      * Set urlDocument
00216      *
00217      * @param string $urlDocument
00218      * @return CabinetType
00219      */
00220     public function setUrlDocument($urlDocument)
00221     {
00222         $this->urlDocument = $urlDocument;
00223     
00224         return $this;
00225     }
00226 
00227     /**
00228      * Get urlDocument
00229      *
00230      * @return string 
00231      */
00232     public function getUrlDocument()
00233     {
00234         return $this->urlDocument;
00235     }
00236 
00237     /**
00238      * Set dtStart
00239      *
00240      * @param \DateTime $dtStart
00241      * @return CabinetType
00242      */
00243     public function setDtStart($dtStart)
00244     {
00245         $this->dtStart = $dtStart;
00246     
00247         return $this;
00248     }
00249 
00250     /**
00251      * Get dtStart
00252      *
00253      * @return \DateTime 
00254      */
00255     public function getDtStart()
00256     {
00257         return $this->dtStart;
00258     }
00259 
00260     /**
00261      * Set dtEnd
00262      *
00263      * @param \DateTime $dtEnd
00264      * @return CabinetType
00265      */
00266     public function setDtEnd($dtEnd)
00267     {
00268         $this->dtEnd = $dtEnd;
00269     
00270         return $this;
00271     }
00272 
00273     /**
00274      * Get dtEnd
00275      *
00276      * @return \DateTime 
00277      */
00278     public function getDtEnd()
00279     {
00280         return $this->dtEnd;
00281     }
00282 
00283     /**
00284      * Set blDeactivated
00285      *
00286      * @param boolean $blDeactivated
00287      * @return CabinetType
00288      */
00289     public function setBlDeactivated($blDeactivated)
00290     {
00291         $this->blDeactivated = $blDeactivated;
00292     
00293         return $this;
00294     }
00295 
00296     /**
00297      * Get blDeactivated
00298      *
00299      * @return boolean 
00300      */
00301     public function getBlDeactivated()
00302     {
00303         return $this->blDeactivated;
00304     }
00305 }
 All Classes Namespaces Files Functions Variables