Gina Next Generation
 All Classes Namespaces Files Functions Variables
PopTemplate.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  * PopTemplate
00009  *
00010  * @ORM\Table(name="pop_template")
00011  * @ORM\Entity
00012  */
00013 class PopTemplate
00014 {
00015     /**
00016      * @var string
00017      *
00018      * @ORM\Column(name="cd_pop", type="string", length=15, nullable=false)
00019      */
00020     private $cdPop;
00021 
00022     /**
00023      * @var string
00024      *
00025      * @ORM\Column(name="lb_pop", type="string", length=100, nullable=true)
00026      */
00027     private $lbPop;
00028 
00029     /**
00030      * @var string
00031      *
00032      * @ORM\Column(name="lb_address", type="string", length=255, nullable=true)
00033      */
00034     private $lbAddress;
00035 
00036     /**
00037      * @var string
00038      *
00039      * @ORM\Column(name="cd_postcode", type="string", length=15, nullable=true)
00040      */
00041     private $cdPostcode;
00042 
00043     /**
00044      * @var boolean
00045      *
00046      * @ORM\Column(name="bl_deactivated", type="boolean", nullable=true)
00047      */
00048     private $blDeactivated;
00049 
00050     /**
00051      * @var string
00052      *
00053      * @ORM\Column(name="lb_building", type="string", length=100, nullable=true)
00054      */
00055     private $lbBuilding;
00056 
00057     /**
00058      * @var integer
00059      *
00060      * @ORM\Column(name="id_housing_provider", type="integer", nullable=true)
00061      */
00062     private $idHousingProvider;
00063 
00064     /**
00065      * @var boolean
00066      *
00067      * @ORM\Column(name="bl_customer_pop", type="boolean", nullable=true)
00068      */
00069     private $blCustomerPop;
00070 
00071     /**
00072      * @var string
00073      *
00074      * @ORM\Column(name="lb_localisation", type="string", length=255, nullable=true)
00075      */
00076     private $lbLocalisation;
00077 
00078     /**
00079      * @var \DateTime
00080      *
00081      * @ORM\Column(name="dt_create", type="datetime", nullable=true)
00082      */
00083     private $dtCreate;
00084 
00085     /**
00086      * @var \DateTime
00087      *
00088      * @ORM\Column(name="dt_update", type="datetime", nullable=true)
00089      */
00090     private $dtUpdate;
00091 
00092     /**
00093      * @var \User
00094      *
00095      * @ORM\ManyToOne(targetEntity="User")
00096      * @ORM\JoinColumns({
00097      *   @ORM\JoinColumn(name="id_user_create_by", referencedColumnName="id_user")
00098      * })
00099      */
00100     private $idUserCreateBy;
00101 
00102     /**
00103      * @var \User
00104      *
00105      * @ORM\ManyToOne(targetEntity="User")
00106      * @ORM\JoinColumns({
00107      *   @ORM\JoinColumn(name="id_user_update_by", referencedColumnName="id_user")
00108      * })
00109      */
00110     private $idUserUpdateBy;
00111 
00112     /**
00113      * @var \Pop
00114      *
00115      * @ORM\Id
00116      * @ORM\GeneratedValue(strategy="NONE")
00117      * @ORM\OneToOne(targetEntity="Pop")
00118      * @ORM\JoinColumns({
00119      *   @ORM\JoinColumn(name="id_pop", referencedColumnName="id_pop")
00120      * })
00121      */
00122     private $idPop;
00123 
00124     /**
00125      * @var \Branch
00126      *
00127      * @ORM\ManyToOne(targetEntity="Branch")
00128      * @ORM\JoinColumns({
00129      *   @ORM\JoinColumn(name="id_branch", referencedColumnName="id_branch")
00130      * })
00131      */
00132     private $idBranch;
00133 
00134     /**
00135      * @var \Room
00136      *
00137      * @ORM\ManyToOne(targetEntity="Room")
00138      * @ORM\JoinColumns({
00139      *   @ORM\JoinColumn(name="id_room", referencedColumnName="id_room")
00140      * })
00141      */
00142     private $idRoom;
00143 
00144     /**
00145      * @var \City
00146      *
00147      * @ORM\ManyToOne(targetEntity="City")
00148      * @ORM\JoinColumns({
00149      *   @ORM\JoinColumn(name="id_city", referencedColumnName="id_city")
00150      * })
00151      */
00152     private $idCity;
00153 
00154     /**
00155      * @var \Country
00156      *
00157      * @ORM\ManyToOne(targetEntity="Country")
00158      * @ORM\JoinColumns({
00159      *   @ORM\JoinColumn(name="id_country", referencedColumnName="id_country")
00160      * })
00161      */
00162     private $idCountry;
00163 
00164 
00165 
00166     /**
00167      * Set cdPop
00168      *
00169      * @param string $cdPop
00170      * @return PopTemplate
00171      */
00172     public function setCdPop($cdPop)
00173     {
00174         $this->cdPop = $cdPop;
00175     
00176         return $this;
00177     }
00178 
00179     /**
00180      * Get cdPop
00181      *
00182      * @return string 
00183      */
00184     public function getCdPop()
00185     {
00186         return $this->cdPop;
00187     }
00188 
00189     /**
00190      * Set lbPop
00191      *
00192      * @param string $lbPop
00193      * @return PopTemplate
00194      */
00195     public function setLbPop($lbPop)
00196     {
00197         $this->lbPop = $lbPop;
00198     
00199         return $this;
00200     }
00201 
00202     /**
00203      * Get lbPop
00204      *
00205      * @return string 
00206      */
00207     public function getLbPop()
00208     {
00209         return $this->lbPop;
00210     }
00211 
00212     /**
00213      * Set lbAddress
00214      *
00215      * @param string $lbAddress
00216      * @return PopTemplate
00217      */
00218     public function setLbAddress($lbAddress)
00219     {
00220         $this->lbAddress = $lbAddress;
00221     
00222         return $this;
00223     }
00224 
00225     /**
00226      * Get lbAddress
00227      *
00228      * @return string 
00229      */
00230     public function getLbAddress()
00231     {
00232         return $this->lbAddress;
00233     }
00234 
00235     /**
00236      * Set cdPostcode
00237      *
00238      * @param string $cdPostcode
00239      * @return PopTemplate
00240      */
00241     public function setCdPostcode($cdPostcode)
00242     {
00243         $this->cdPostcode = $cdPostcode;
00244     
00245         return $this;
00246     }
00247 
00248     /**
00249      * Get cdPostcode
00250      *
00251      * @return string 
00252      */
00253     public function getCdPostcode()
00254     {
00255         return $this->cdPostcode;
00256     }
00257 
00258     /**
00259      * Set blDeactivated
00260      *
00261      * @param boolean $blDeactivated
00262      * @return PopTemplate
00263      */
00264     public function setBlDeactivated($blDeactivated)
00265     {
00266         $this->blDeactivated = $blDeactivated;
00267     
00268         return $this;
00269     }
00270 
00271     /**
00272      * Get blDeactivated
00273      *
00274      * @return boolean 
00275      */
00276     public function getBlDeactivated()
00277     {
00278         return $this->blDeactivated;
00279     }
00280 
00281     /**
00282      * Set lbBuilding
00283      *
00284      * @param string $lbBuilding
00285      * @return PopTemplate
00286      */
00287     public function setLbBuilding($lbBuilding)
00288     {
00289         $this->lbBuilding = $lbBuilding;
00290     
00291         return $this;
00292     }
00293 
00294     /**
00295      * Get lbBuilding
00296      *
00297      * @return string 
00298      */
00299     public function getLbBuilding()
00300     {
00301         return $this->lbBuilding;
00302     }
00303 
00304     /**
00305      * Set idHousingProvider
00306      *
00307      * @param integer $idHousingProvider
00308      * @return PopTemplate
00309      */
00310     public function setIdHousingProvider($idHousingProvider)
00311     {
00312         $this->idHousingProvider = $idHousingProvider;
00313     
00314         return $this;
00315     }
00316 
00317     /**
00318      * Get idHousingProvider
00319      *
00320      * @return integer 
00321      */
00322     public function getIdHousingProvider()
00323     {
00324         return $this->idHousingProvider;
00325     }
00326 
00327     /**
00328      * Set blCustomerPop
00329      *
00330      * @param boolean $blCustomerPop
00331      * @return PopTemplate
00332      */
00333     public function setBlCustomerPop($blCustomerPop)
00334     {
00335         $this->blCustomerPop = $blCustomerPop;
00336     
00337         return $this;
00338     }
00339 
00340     /**
00341      * Get blCustomerPop
00342      *
00343      * @return boolean 
00344      */
00345     public function getBlCustomerPop()
00346     {
00347         return $this->blCustomerPop;
00348     }
00349 
00350     /**
00351      * Set lbLocalisation
00352      *
00353      * @param string $lbLocalisation
00354      * @return PopTemplate
00355      */
00356     public function setLbLocalisation($lbLocalisation)
00357     {
00358         $this->lbLocalisation = $lbLocalisation;
00359     
00360         return $this;
00361     }
00362 
00363     /**
00364      * Get lbLocalisation
00365      *
00366      * @return string 
00367      */
00368     public function getLbLocalisation()
00369     {
00370         return $this->lbLocalisation;
00371     }
00372 
00373     /**
00374      * Set dtCreate
00375      *
00376      * @param \DateTime $dtCreate
00377      * @return PopTemplate
00378      */
00379     public function setDtCreate($dtCreate)
00380     {
00381         $this->dtCreate = $dtCreate;
00382     
00383         return $this;
00384     }
00385 
00386     /**
00387      * Get dtCreate
00388      *
00389      * @return \DateTime 
00390      */
00391     public function getDtCreate()
00392     {
00393         return $this->dtCreate;
00394     }
00395 
00396     /**
00397      * Set dtUpdate
00398      *
00399      * @param \DateTime $dtUpdate
00400      * @return PopTemplate
00401      */
00402     public function setDtUpdate($dtUpdate)
00403     {
00404         $this->dtUpdate = $dtUpdate;
00405     
00406         return $this;
00407     }
00408 
00409     /**
00410      * Get dtUpdate
00411      *
00412      * @return \DateTime 
00413      */
00414     public function getDtUpdate()
00415     {
00416         return $this->dtUpdate;
00417     }
00418 
00419     /**
00420      * Set idUserCreateBy
00421      *
00422      * @param \Etrali\GinangBundle\Entity\User $idUserCreateBy
00423      * @return PopTemplate
00424      */
00425     public function setIdUserCreateBy(\Etrali\GinangBundle\Entity\User $idUserCreateBy = null)
00426     {
00427         $this->idUserCreateBy = $idUserCreateBy;
00428     
00429         return $this;
00430     }
00431 
00432     /**
00433      * Get idUserCreateBy
00434      *
00435      * @return \Etrali\GinangBundle\Entity\User 
00436      */
00437     public function getIdUserCreateBy()
00438     {
00439         return $this->idUserCreateBy;
00440     }
00441 
00442     /**
00443      * Set idUserUpdateBy
00444      *
00445      * @param \Etrali\GinangBundle\Entity\User $idUserUpdateBy
00446      * @return PopTemplate
00447      */
00448     public function setIdUserUpdateBy(\Etrali\GinangBundle\Entity\User $idUserUpdateBy = null)
00449     {
00450         $this->idUserUpdateBy = $idUserUpdateBy;
00451     
00452         return $this;
00453     }
00454 
00455     /**
00456      * Get idUserUpdateBy
00457      *
00458      * @return \Etrali\GinangBundle\Entity\User 
00459      */
00460     public function getIdUserUpdateBy()
00461     {
00462         return $this->idUserUpdateBy;
00463     }
00464 
00465     /**
00466      * Set idPop
00467      *
00468      * @param \Etrali\GinangBundle\Entity\Pop $idPop
00469      * @return PopTemplate
00470      */
00471     public function setIdPop(\Etrali\GinangBundle\Entity\Pop $idPop)
00472     {
00473         $this->idPop = $idPop;
00474     
00475         return $this;
00476     }
00477 
00478     /**
00479      * Get idPop
00480      *
00481      * @return \Etrali\GinangBundle\Entity\Pop 
00482      */
00483     public function getIdPop()
00484     {
00485         return $this->idPop;
00486     }
00487 
00488     /**
00489      * Set idBranch
00490      *
00491      * @param \Etrali\GinangBundle\Entity\Branch $idBranch
00492      * @return PopTemplate
00493      */
00494     public function setIdBranch(\Etrali\GinangBundle\Entity\Branch $idBranch = null)
00495     {
00496         $this->idBranch = $idBranch;
00497     
00498         return $this;
00499     }
00500 
00501     /**
00502      * Get idBranch
00503      *
00504      * @return \Etrali\GinangBundle\Entity\Branch 
00505      */
00506     public function getIdBranch()
00507     {
00508         return $this->idBranch;
00509     }
00510 
00511     /**
00512      * Set idRoom
00513      *
00514      * @param \Etrali\GinangBundle\Entity\Room $idRoom
00515      * @return PopTemplate
00516      */
00517     public function setIdRoom(\Etrali\GinangBundle\Entity\Room $idRoom = null)
00518     {
00519         $this->idRoom = $idRoom;
00520     
00521         return $this;
00522     }
00523 
00524     /**
00525      * Get idRoom
00526      *
00527      * @return \Etrali\GinangBundle\Entity\Room 
00528      */
00529     public function getIdRoom()
00530     {
00531         return $this->idRoom;
00532     }
00533 
00534     /**
00535      * Set idCity
00536      *
00537      * @param \Etrali\GinangBundle\Entity\City $idCity
00538      * @return PopTemplate
00539      */
00540     public function setIdCity(\Etrali\GinangBundle\Entity\City $idCity = null)
00541     {
00542         $this->idCity = $idCity;
00543     
00544         return $this;
00545     }
00546 
00547     /**
00548      * Get idCity
00549      *
00550      * @return \Etrali\GinangBundle\Entity\City 
00551      */
00552     public function getIdCity()
00553     {
00554         return $this->idCity;
00555     }
00556 
00557     /**
00558      * Set idCountry
00559      *
00560      * @param \Etrali\GinangBundle\Entity\Country $idCountry
00561      * @return PopTemplate
00562      */
00563     public function setIdCountry(\Etrali\GinangBundle\Entity\Country $idCountry = null)
00564     {
00565         $this->idCountry = $idCountry;
00566     
00567         return $this;
00568     }
00569 
00570     /**
00571      * Get idCountry
00572      *
00573      * @return \Etrali\GinangBundle\Entity\Country 
00574      */
00575     public function getIdCountry()
00576     {
00577         return $this->idCountry;
00578     }
00579 }
 All Classes Namespaces Files Functions Variables