Gina Next Generation
 All Classes Namespaces Files Functions Variables
CostCenter.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  * CostCenter
00009  *
00010  * @ORM\Table(name="cost_center")
00011  * @ORM\Entity
00012  */
00013 class CostCenter
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_cost_center", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idCostCenter;
00023 
00024     /**
00025      * @var string
00026      *
00027      * @ORM\Column(name="cd_cost_center", type="string", length=15, nullable=true)
00028      */
00029     private $cdCostCenter;
00030 
00031     /**
00032      * @var string
00033      *
00034      * @ORM\Column(name="lb_cost_center", type="string", length=100, nullable=true)
00035      */
00036     private $lbCostCenter;
00037 
00038     /**
00039      * @var float
00040      *
00041      * @ORM\Column(name="nb_cost_center", type="decimal", nullable=true)
00042      */
00043     private $nbCostCenter;
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 idCostCenter
00056      *
00057      * @return integer 
00058      */
00059     public function getIdCostCenter()
00060     {
00061         return $this->idCostCenter;
00062     }
00063 
00064     /**
00065      * Set cdCostCenter
00066      *
00067      * @param string $cdCostCenter
00068      * @return CostCenter
00069      */
00070     public function setCdCostCenter($cdCostCenter)
00071     {
00072         $this->cdCostCenter = $cdCostCenter;
00073     
00074         return $this;
00075     }
00076 
00077     /**
00078      * Get cdCostCenter
00079      *
00080      * @return string 
00081      */
00082     public function getCdCostCenter()
00083     {
00084         return $this->cdCostCenter;
00085     }
00086 
00087     /**
00088      * Set lbCostCenter
00089      *
00090      * @param string $lbCostCenter
00091      * @return CostCenter
00092      */
00093     public function setLbCostCenter($lbCostCenter)
00094     {
00095         $this->lbCostCenter = $lbCostCenter;
00096     
00097         return $this;
00098     }
00099 
00100     /**
00101      * Get lbCostCenter
00102      *
00103      * @return string 
00104      */
00105     public function getLbCostCenter()
00106     {
00107         return $this->lbCostCenter;
00108     }
00109 
00110     /**
00111      * Set nbCostCenter
00112      *
00113      * @param float $nbCostCenter
00114      * @return CostCenter
00115      */
00116     public function setNbCostCenter($nbCostCenter)
00117     {
00118         $this->nbCostCenter = $nbCostCenter;
00119     
00120         return $this;
00121     }
00122 
00123     /**
00124      * Get nbCostCenter
00125      *
00126      * @return float 
00127      */
00128     public function getNbCostCenter()
00129     {
00130         return $this->nbCostCenter;
00131     }
00132 
00133     /**
00134      * Set blDeactivated
00135      *
00136      * @param boolean $blDeactivated
00137      * @return CostCenter
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