Gina Next Generation
 All Classes Namespaces Files Functions Variables
CountryProviderGroup.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  * CountryProviderGroup
00009  *
00010  * @ORM\Table(name="country_provider_group")
00011  * @ORM\Entity
00012  */
00013 class CountryProviderGroup
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_country_provider_group", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idCountryProviderGroup;
00023 
00024     /**
00025      * @var integer
00026      *
00027      * @ORM\Column(name="lb_country_group", type="integer", nullable=false)
00028      */
00029     private $lbCountryGroup;
00030 
00031     /**
00032      * @var boolean
00033      *
00034      * @ORM\Column(name="bl_deactivated", type="boolean", nullable=false)
00035      */
00036     private $blDeactivated;
00037 
00038     /**
00039      * @var \DateTime
00040      *
00041      * @ORM\Column(name="dt_daectivated", type="datetime", nullable=true)
00042      */
00043     private $dtDaectivated;
00044 
00045     /**
00046      * @var \DateTime
00047      *
00048      * @ORM\Column(name="dt_create", type="datetime", nullable=true)
00049      */
00050     private $dtCreate;
00051 
00052     /**
00053      * @var \DateTime
00054      *
00055      * @ORM\Column(name="dt_update", type="datetime", nullable=true)
00056      */
00057     private $dtUpdate;
00058 
00059     /**
00060      * @var \Cluster
00061      *
00062      * @ORM\ManyToOne(targetEntity="Cluster")
00063      * @ORM\JoinColumns({
00064      *   @ORM\JoinColumn(name="id_cluster", referencedColumnName="id_cluster")
00065      * })
00066      */
00067     private $idCluster;
00068 
00069     /**
00070      * @var \WorldwideGroup
00071      *
00072      * @ORM\ManyToOne(targetEntity="WorldwideGroup")
00073      * @ORM\JoinColumns({
00074      *   @ORM\JoinColumn(name="id_worldwide_group", referencedColumnName="id_worldwide_group")
00075      * })
00076      */
00077     private $idWorldwideGroup;
00078 
00079     /**
00080      * @var \Country
00081      *
00082      * @ORM\ManyToOne(targetEntity="Country")
00083      * @ORM\JoinColumns({
00084      *   @ORM\JoinColumn(name="id_country", referencedColumnName="id_country")
00085      * })
00086      */
00087     private $idCountry;
00088 
00089     /**
00090      * @var \User
00091      *
00092      * @ORM\ManyToOne(targetEntity="User")
00093      * @ORM\JoinColumns({
00094      *   @ORM\JoinColumn(name="id_user_create_by", referencedColumnName="id_user")
00095      * })
00096      */
00097     private $idUserCreateBy;
00098 
00099     /**
00100      * @var \User
00101      *
00102      * @ORM\ManyToOne(targetEntity="User")
00103      * @ORM\JoinColumns({
00104      *   @ORM\JoinColumn(name="id_user_update_by", referencedColumnName="id_user")
00105      * })
00106      */
00107     private $idUserUpdateBy;
00108 
00109 
00110 
00111     /**
00112      * Get idCountryProviderGroup
00113      *
00114      * @return integer 
00115      */
00116     public function getIdCountryProviderGroup()
00117     {
00118         return $this->idCountryProviderGroup;
00119     }
00120 
00121     /**
00122      * Set lbCountryGroup
00123      *
00124      * @param integer $lbCountryGroup
00125      * @return CountryProviderGroup
00126      */
00127     public function setLbCountryGroup($lbCountryGroup)
00128     {
00129         $this->lbCountryGroup = $lbCountryGroup;
00130     
00131         return $this;
00132     }
00133 
00134     /**
00135      * Get lbCountryGroup
00136      *
00137      * @return integer 
00138      */
00139     public function getLbCountryGroup()
00140     {
00141         return $this->lbCountryGroup;
00142     }
00143 
00144     /**
00145      * Set blDeactivated
00146      *
00147      * @param boolean $blDeactivated
00148      * @return CountryProviderGroup
00149      */
00150     public function setBlDeactivated($blDeactivated)
00151     {
00152         $this->blDeactivated = $blDeactivated;
00153     
00154         return $this;
00155     }
00156 
00157     /**
00158      * Get blDeactivated
00159      *
00160      * @return boolean 
00161      */
00162     public function getBlDeactivated()
00163     {
00164         return $this->blDeactivated;
00165     }
00166 
00167     /**
00168      * Set dtDaectivated
00169      *
00170      * @param \DateTime $dtDaectivated
00171      * @return CountryProviderGroup
00172      */
00173     public function setDtDaectivated($dtDaectivated)
00174     {
00175         $this->dtDaectivated = $dtDaectivated;
00176     
00177         return $this;
00178     }
00179 
00180     /**
00181      * Get dtDaectivated
00182      *
00183      * @return \DateTime 
00184      */
00185     public function getDtDaectivated()
00186     {
00187         return $this->dtDaectivated;
00188     }
00189 
00190     /**
00191      * Set dtCreate
00192      *
00193      * @param \DateTime $dtCreate
00194      * @return CountryProviderGroup
00195      */
00196     public function setDtCreate($dtCreate)
00197     {
00198         $this->dtCreate = $dtCreate;
00199     
00200         return $this;
00201     }
00202 
00203     /**
00204      * Get dtCreate
00205      *
00206      * @return \DateTime 
00207      */
00208     public function getDtCreate()
00209     {
00210         return $this->dtCreate;
00211     }
00212 
00213     /**
00214      * Set dtUpdate
00215      *
00216      * @param \DateTime $dtUpdate
00217      * @return CountryProviderGroup
00218      */
00219     public function setDtUpdate($dtUpdate)
00220     {
00221         $this->dtUpdate = $dtUpdate;
00222     
00223         return $this;
00224     }
00225 
00226     /**
00227      * Get dtUpdate
00228      *
00229      * @return \DateTime 
00230      */
00231     public function getDtUpdate()
00232     {
00233         return $this->dtUpdate;
00234     }
00235 
00236     /**
00237      * Set idCluster
00238      *
00239      * @param \Etrali\GinangBundle\Entity\Cluster $idCluster
00240      * @return CountryProviderGroup
00241      */
00242     public function setIdCluster(\Etrali\GinangBundle\Entity\Cluster $idCluster = null)
00243     {
00244         $this->idCluster = $idCluster;
00245     
00246         return $this;
00247     }
00248 
00249     /**
00250      * Get idCluster
00251      *
00252      * @return \Etrali\GinangBundle\Entity\Cluster 
00253      */
00254     public function getIdCluster()
00255     {
00256         return $this->idCluster;
00257     }
00258 
00259     /**
00260      * Set idWorldwideGroup
00261      *
00262      * @param \Etrali\GinangBundle\Entity\WorldwideGroup $idWorldwideGroup
00263      * @return CountryProviderGroup
00264      */
00265     public function setIdWorldwideGroup(\Etrali\GinangBundle\Entity\WorldwideGroup $idWorldwideGroup = null)
00266     {
00267         $this->idWorldwideGroup = $idWorldwideGroup;
00268     
00269         return $this;
00270     }
00271 
00272     /**
00273      * Get idWorldwideGroup
00274      *
00275      * @return \Etrali\GinangBundle\Entity\WorldwideGroup 
00276      */
00277     public function getIdWorldwideGroup()
00278     {
00279         return $this->idWorldwideGroup;
00280     }
00281 
00282     /**
00283      * Set idCountry
00284      *
00285      * @param \Etrali\GinangBundle\Entity\Country $idCountry
00286      * @return CountryProviderGroup
00287      */
00288     public function setIdCountry(\Etrali\GinangBundle\Entity\Country $idCountry = null)
00289     {
00290         $this->idCountry = $idCountry;
00291     
00292         return $this;
00293     }
00294 
00295     /**
00296      * Get idCountry
00297      *
00298      * @return \Etrali\GinangBundle\Entity\Country 
00299      */
00300     public function getIdCountry()
00301     {
00302         return $this->idCountry;
00303     }
00304 
00305     /**
00306      * Set idUserCreateBy
00307      *
00308      * @param \Etrali\GinangBundle\Entity\User $idUserCreateBy
00309      * @return CountryProviderGroup
00310      */
00311     public function setIdUserCreateBy(\Etrali\GinangBundle\Entity\User $idUserCreateBy = null)
00312     {
00313         $this->idUserCreateBy = $idUserCreateBy;
00314     
00315         return $this;
00316     }
00317 
00318     /**
00319      * Get idUserCreateBy
00320      *
00321      * @return \Etrali\GinangBundle\Entity\User 
00322      */
00323     public function getIdUserCreateBy()
00324     {
00325         return $this->idUserCreateBy;
00326     }
00327 
00328     /**
00329      * Set idUserUpdateBy
00330      *
00331      * @param \Etrali\GinangBundle\Entity\User $idUserUpdateBy
00332      * @return CountryProviderGroup
00333      */
00334     public function setIdUserUpdateBy(\Etrali\GinangBundle\Entity\User $idUserUpdateBy = null)
00335     {
00336         $this->idUserUpdateBy = $idUserUpdateBy;
00337     
00338         return $this;
00339     }
00340 
00341     /**
00342      * Get idUserUpdateBy
00343      *
00344      * @return \Etrali\GinangBundle\Entity\User 
00345      */
00346     public function getIdUserUpdateBy()
00347     {
00348         return $this->idUserUpdateBy;
00349     }
00350 }
 All Classes Namespaces Files Functions Variables