Gina Next Generation
 All Classes Namespaces Files Functions Variables
EquipmentModelCaracs.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  * EquipmentModelCaracs
00009  *
00010  * @ORM\Table(name="equipment_model_caracs")
00011  * @ORM\Entity
00012  */
00013 class EquipmentModelCaracs
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_equipment_model_caracs", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idEquipmentModelCaracs;
00023 
00024     /**
00025      * @var string
00026      *
00027      * @ORM\Column(name="valeur", type="string", length=45, nullable=true)
00028      */
00029     private $valeur;
00030 
00031     /**
00032      * @var \EquipmentModel
00033      *
00034      * @ORM\ManyToOne(targetEntity="EquipmentModel")
00035      * @ORM\JoinColumns({
00036      *   @ORM\JoinColumn(name="id_equipment_model", referencedColumnName="id_equipment_model")
00037      * })
00038      */
00039     private $idEquipmentModel;
00040 
00041     /**
00042      * @var \EquipmentTypeCaracs
00043      *
00044      * @ORM\ManyToOne(targetEntity="EquipmentTypeCaracs")
00045      * @ORM\JoinColumns({
00046      *   @ORM\JoinColumn(name="id_equipment_type_caracs", referencedColumnName="id_equipement_type_caracs")
00047      * })
00048      */
00049     private $idEquipmentTypeCaracs;
00050 
00051 
00052 
00053     /**
00054      * Get idEquipmentModelCaracs
00055      *
00056      * @return integer 
00057      */
00058     public function getIdEquipmentModelCaracs()
00059     {
00060         return $this->idEquipmentModelCaracs;
00061     }
00062 
00063     /**
00064      * Set valeur
00065      *
00066      * @param string $valeur
00067      * @return EquipmentModelCaracs
00068      */
00069     public function setValeur($valeur)
00070     {
00071         $this->valeur = $valeur;
00072     
00073         return $this;
00074     }
00075 
00076     /**
00077      * Get valeur
00078      *
00079      * @return string 
00080      */
00081     public function getValeur()
00082     {
00083         return $this->valeur;
00084     }
00085 
00086     /**
00087      * Set idEquipmentModel
00088      *
00089      * @param \Etrali\GinangBundle\Entity\EquipmentModel $idEquipmentModel
00090      * @return EquipmentModelCaracs
00091      */
00092     public function setIdEquipmentModel(\Etrali\GinangBundle\Entity\EquipmentModel $idEquipmentModel = null)
00093     {
00094         $this->idEquipmentModel = $idEquipmentModel;
00095     
00096         return $this;
00097     }
00098 
00099     /**
00100      * Get idEquipmentModel
00101      *
00102      * @return \Etrali\GinangBundle\Entity\EquipmentModel 
00103      */
00104     public function getIdEquipmentModel()
00105     {
00106         return $this->idEquipmentModel;
00107     }
00108 
00109     /**
00110      * Set idEquipmentTypeCaracs
00111      *
00112      * @param \Etrali\GinangBundle\Entity\EquipmentTypeCaracs $idEquipmentTypeCaracs
00113      * @return EquipmentModelCaracs
00114      */
00115     public function setIdEquipmentTypeCaracs(\Etrali\GinangBundle\Entity\EquipmentTypeCaracs $idEquipmentTypeCaracs = null)
00116     {
00117         $this->idEquipmentTypeCaracs = $idEquipmentTypeCaracs;
00118     
00119         return $this;
00120     }
00121 
00122     /**
00123      * Get idEquipmentTypeCaracs
00124      *
00125      * @return \Etrali\GinangBundle\Entity\EquipmentTypeCaracs 
00126      */
00127     public function getIdEquipmentTypeCaracs()
00128     {
00129         return $this->idEquipmentTypeCaracs;
00130     }
00131 }
 All Classes Namespaces Files Functions Variables