Gina Next Generation
 All Classes Namespaces Files Functions Variables
EquipmentModel.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  * EquipmentModel
00009  *
00010  * @ORM\Table(name="equipment_model")
00011  * @ORM\Entity
00012  */
00013 class EquipmentModel
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_equipment_model", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idEquipmentModel;
00023 
00024     /**
00025      * @var string
00026      *
00027      * @ORM\Column(name="cd_equipment_model", type="string", length=15, nullable=true)
00028      */
00029     private $cdEquipmentModel;
00030 
00031     /**
00032      * @var string
00033      *
00034      * @ORM\Column(name="lb_equipment_model", type="string", length=100, nullable=true)
00035      */
00036     private $lbEquipmentModel;
00037 
00038     /**
00039      * @var string
00040      *
00041      * @ORM\Column(name="url_image", type="string", length=100, nullable=true)
00042      */
00043     private $urlImage;
00044 
00045     /**
00046      * @var \DateTime
00047      *
00048      * @ORM\Column(name="dt_start", type="datetime", nullable=true)
00049      */
00050     private $dtStart;
00051 
00052     /**
00053      * @var \DateTime
00054      *
00055      * @ORM\Column(name="dt_end", type="datetime", nullable=true)
00056      */
00057     private $dtEnd;
00058 
00059     /**
00060      * @var boolean
00061      *
00062      * @ORM\Column(name="bl_deactivated", type="boolean", nullable=true)
00063      */
00064     private $blDeactivated;
00065 
00066     /**
00067      * @var boolean
00068      *
00069      * @ORM\Column(name="bl_complex", type="boolean", nullable=true)
00070      */
00071     private $blComplex;
00072 
00073     /**
00074      * @var float
00075      *
00076      * @ORM\Column(name="one_off_cost", type="decimal", nullable=true)
00077      */
00078     private $oneOffCost;
00079 
00080     /**
00081      * @var float
00082      *
00083      * @ORM\Column(name="rec_off_cost", type="decimal", nullable=true)
00084      */
00085     private $recOffCost;
00086 
00087     /**
00088      * @var \DateTime
00089      *
00090      * @ORM\Column(name="dt_deactivated", type="datetime", nullable=true)
00091      */
00092     private $dtDeactivated;
00093 
00094     /**
00095      * @var \User
00096      *
00097      * @ORM\ManyToOne(targetEntity="User")
00098      * @ORM\JoinColumns({
00099      *   @ORM\JoinColumn(name="id_user_create_by", referencedColumnName="id_user")
00100      * })
00101      */
00102     private $idUserCreateBy;
00103 
00104     /**
00105      * @var \User
00106      *
00107      * @ORM\ManyToOne(targetEntity="User")
00108      * @ORM\JoinColumns({
00109      *   @ORM\JoinColumn(name="id_user_update_by", referencedColumnName="id_user")
00110      * })
00111      */
00112     private $idUserUpdateBy;
00113 
00114 
00115 
00116     /**
00117      * Get idEquipmentModel
00118      *
00119      * @return integer 
00120      */
00121     public function getIdEquipmentModel()
00122     {
00123         return $this->idEquipmentModel;
00124     }
00125 
00126     /**
00127      * Set cdEquipmentModel
00128      *
00129      * @param string $cdEquipmentModel
00130      * @return EquipmentModel
00131      */
00132     public function setCdEquipmentModel($cdEquipmentModel)
00133     {
00134         $this->cdEquipmentModel = $cdEquipmentModel;
00135     
00136         return $this;
00137     }
00138 
00139     /**
00140      * Get cdEquipmentModel
00141      *
00142      * @return string 
00143      */
00144     public function getCdEquipmentModel()
00145     {
00146         return $this->cdEquipmentModel;
00147     }
00148 
00149     /**
00150      * Set lbEquipmentModel
00151      *
00152      * @param string $lbEquipmentModel
00153      * @return EquipmentModel
00154      */
00155     public function setLbEquipmentModel($lbEquipmentModel)
00156     {
00157         $this->lbEquipmentModel = $lbEquipmentModel;
00158     
00159         return $this;
00160     }
00161 
00162     /**
00163      * Get lbEquipmentModel
00164      *
00165      * @return string 
00166      */
00167     public function getLbEquipmentModel()
00168     {
00169         return $this->lbEquipmentModel;
00170     }
00171 
00172     /**
00173      * Set urlImage
00174      *
00175      * @param string $urlImage
00176      * @return EquipmentModel
00177      */
00178     public function setUrlImage($urlImage)
00179     {
00180         $this->urlImage = $urlImage;
00181     
00182         return $this;
00183     }
00184 
00185     /**
00186      * Get urlImage
00187      *
00188      * @return string 
00189      */
00190     public function getUrlImage()
00191     {
00192         return $this->urlImage;
00193     }
00194 
00195     /**
00196      * Set dtStart
00197      *
00198      * @param \DateTime $dtStart
00199      * @return EquipmentModel
00200      */
00201     public function setDtStart($dtStart)
00202     {
00203         $this->dtStart = $dtStart;
00204     
00205         return $this;
00206     }
00207 
00208     /**
00209      * Get dtStart
00210      *
00211      * @return \DateTime 
00212      */
00213     public function getDtStart()
00214     {
00215         return $this->dtStart;
00216     }
00217 
00218     /**
00219      * Set dtEnd
00220      *
00221      * @param \DateTime $dtEnd
00222      * @return EquipmentModel
00223      */
00224     public function setDtEnd($dtEnd)
00225     {
00226         $this->dtEnd = $dtEnd;
00227     
00228         return $this;
00229     }
00230 
00231     /**
00232      * Get dtEnd
00233      *
00234      * @return \DateTime 
00235      */
00236     public function getDtEnd()
00237     {
00238         return $this->dtEnd;
00239     }
00240 
00241     /**
00242      * Set blDeactivated
00243      *
00244      * @param boolean $blDeactivated
00245      * @return EquipmentModel
00246      */
00247     public function setBlDeactivated($blDeactivated)
00248     {
00249         $this->blDeactivated = $blDeactivated;
00250     
00251         return $this;
00252     }
00253 
00254     /**
00255      * Get blDeactivated
00256      *
00257      * @return boolean 
00258      */
00259     public function getBlDeactivated()
00260     {
00261         return $this->blDeactivated;
00262     }
00263 
00264     /**
00265      * Set blComplex
00266      *
00267      * @param boolean $blComplex
00268      * @return EquipmentModel
00269      */
00270     public function setBlComplex($blComplex)
00271     {
00272         $this->blComplex = $blComplex;
00273     
00274         return $this;
00275     }
00276 
00277     /**
00278      * Get blComplex
00279      *
00280      * @return boolean 
00281      */
00282     public function getBlComplex()
00283     {
00284         return $this->blComplex;
00285     }
00286 
00287     /**
00288      * Set oneOffCost
00289      *
00290      * @param float $oneOffCost
00291      * @return EquipmentModel
00292      */
00293     public function setOneOffCost($oneOffCost)
00294     {
00295         $this->oneOffCost = $oneOffCost;
00296     
00297         return $this;
00298     }
00299 
00300     /**
00301      * Get oneOffCost
00302      *
00303      * @return float 
00304      */
00305     public function getOneOffCost()
00306     {
00307         return $this->oneOffCost;
00308     }
00309 
00310     /**
00311      * Set recOffCost
00312      *
00313      * @param float $recOffCost
00314      * @return EquipmentModel
00315      */
00316     public function setRecOffCost($recOffCost)
00317     {
00318         $this->recOffCost = $recOffCost;
00319     
00320         return $this;
00321     }
00322 
00323     /**
00324      * Get recOffCost
00325      *
00326      * @return float 
00327      */
00328     public function getRecOffCost()
00329     {
00330         return $this->recOffCost;
00331     }
00332 
00333     /**
00334      * Set dtDeactivated
00335      *
00336      * @param \DateTime $dtDeactivated
00337      * @return EquipmentModel
00338      */
00339     public function setDtDeactivated($dtDeactivated)
00340     {
00341         $this->dtDeactivated = $dtDeactivated;
00342     
00343         return $this;
00344     }
00345 
00346     /**
00347      * Get dtDeactivated
00348      *
00349      * @return \DateTime 
00350      */
00351     public function getDtDeactivated()
00352     {
00353         return $this->dtDeactivated;
00354     }
00355 
00356     /**
00357      * Set idUserCreateBy
00358      *
00359      * @param \Etrali\GinangBundle\Entity\User $idUserCreateBy
00360      * @return EquipmentModel
00361      */
00362     public function setIdUserCreateBy(\Etrali\GinangBundle\Entity\User $idUserCreateBy = null)
00363     {
00364         $this->idUserCreateBy = $idUserCreateBy;
00365     
00366         return $this;
00367     }
00368 
00369     /**
00370      * Get idUserCreateBy
00371      *
00372      * @return \Etrali\GinangBundle\Entity\User 
00373      */
00374     public function getIdUserCreateBy()
00375     {
00376         return $this->idUserCreateBy;
00377     }
00378 
00379     /**
00380      * Set idUserUpdateBy
00381      *
00382      * @param \Etrali\GinangBundle\Entity\User $idUserUpdateBy
00383      * @return EquipmentModel
00384      */
00385     public function setIdUserUpdateBy(\Etrali\GinangBundle\Entity\User $idUserUpdateBy = null)
00386     {
00387         $this->idUserUpdateBy = $idUserUpdateBy;
00388     
00389         return $this;
00390     }
00391 
00392     /**
00393      * Get idUserUpdateBy
00394      *
00395      * @return \Etrali\GinangBundle\Entity\User 
00396      */
00397     public function getIdUserUpdateBy()
00398     {
00399         return $this->idUserUpdateBy;
00400     }
00401 }
 All Classes Namespaces Files Functions Variables