<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* ApidaeReferenceElemant
* @ORM\Table(name="apidae_reference_element")
* @ORM\Entity(repositoryClass="App\Repository\ApidaeReferenceElementRepository")
*/
class ApidaeReferenceElement
{
/**
* @var integer
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="SEQUENCE")
* @ORM\SequenceGenerator(sequenceName="apidae_referenceelement_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var string
* @ORM\Column(name="code_tif",type="string", length=255, nullable=true)
*/
private $codeTif;
/**
* @var string
* @ORM\Column(name="lib_fr",type="string", length=255, nullable=true)
*/
private $libFr;
/**
* @var string
* @ORM\Column(name="lib_en",type="string", length=255, nullable=true)
*/
private $libEn;
/**
* @var string
* @ORM\Column(name="lib_de",type="string", length=255, nullable=true)
*/
private $libDe;
/**
* @var string
* @ORM\Column(name="lib_es",type="string", length=255, nullable=true)
*/
private $libEs;
/**
* @var string
* @ORM\Column(name="lib_it",type="string", length=255, nullable=true)
*/
private $libIt;
/**
* @var string
* @ORM\Column(name="lib_nl",type="string", length=255, nullable=true)
*/
private $libNl;
/**
* @var string
* @ORM\Column(name="lib_ru",type="string", length=255, nullable=true)
*/
private $libRu;
/**
* @var string
* @ORM\Column(name="lib_pt",type="string", length=255, nullable=true)
*/
private $libPt;
/**
* @var string
* @ORM\Column(name="lib_cn",type="string", length=255, nullable=true)
*/
private $libCn;
/**
* @var string
* @ORM\Column(name="criterion_name",type="string", length=255, nullable=true)
*/
private $criterionName;
/**
* @var string
* @ORM\Column(name="famille",type="string", length=255, nullable=true)
*/
private $famille;
/**
* @var string
* @ORM\Column(name="famille_id",type="string", length=255, nullable=true)
*/
private $familleId;
/**
* @var string
* @ORM\Column(name="famille_tif",type="string", length=255, nullable=true)
*/
private $familleTif;
/**
* @var string
* @ORM\Column(name="parent",type="string", length=255, nullable=true)
*/
private $parent;
/**
* @var string
* @ORM\Column(name="parent_id",type="string", length=255, nullable=true)
*/
private $parentId;
/**
* @var string
* @ORM\Column(name="parent_tif",type="string", length=255, nullable=true)
*/
private $parentTif;
/**
* @var string
* @ORM\Column(name="etat",type="string", length=255, nullable=true)
*/
private $etat;
/**
* @var integer
* @ORM\Column(name="ordre",type="integer", nullable=true)
*/
private $ordre;
/**
* Set codeTif
*
* @param string $codeTif
*
* @return ApidaeReferenceElement
*/
public function setCodeTif($codeTif)
{
$this->codeTif = $codeTif;
return $this;
}
/**
* Get codeTif
*
* @return string
*/
public function getCodeTif()
{
return $this->codeTif;
}
/**
* Set libFr
*
* @param string $libFr
*
* @return ApidaeReferenceElement
*/
public function setLibFr($libFr)
{
$this->libFr = $libFr;
return $this;
}
/**
* Get libFr
*
* @return string
*/
public function getLibFr()
{
return $this->libFr;
}
/**
* Set libEn
*
* @param string $libEn
*
* @return ApidaeReferenceElement
*/
public function setLibEn($libEn)
{
$this->libEn = $libEn;
return $this;
}
/**
* Get libEn
*
* @return string
*/
public function getLibEn()
{
return $this->libEn;
}
/**
* Set libDe
*
* @param string $libDe
*
* @return ApidaeReferenceElement
*/
public function setLibDe($libDe)
{
$this->libDe = $libDe;
return $this;
}
/**
* Get libDe
*
* @return string
*/
public function getLibDe()
{
return $this->libDe;
}
/**
* Set libEs
*
* @param string $libEs
*
* @return ApidaeReferenceElement
*/
public function setLibEs($libEs)
{
$this->libEs = $libEs;
return $this;
}
/**
* Get libEs
*
* @return string
*/
public function getLibEs()
{
return $this->libEs;
}
/**
* Set libIt
*
* @param string $libIt
*
* @return ApidaeReferenceElement
*/
public function setLibIt($libIt)
{
$this->libIt = $libIt;
return $this;
}
/**
* Get libIt
*
* @return string
*/
public function getLibIt()
{
return $this->libIt;
}
/**
* Set libNl
*
* @param string $libNl
*
* @return ApidaeReferenceElement
*/
public function setLibNl($libNl)
{
$this->libNl = $libNl;
return $this;
}
/**
* Get libNl
*
* @return string
*/
public function getLibNl()
{
return $this->libNl;
}
/**
* Set libRu
*
* @param string $libRu
*
* @return ApidaeReferenceElement
*/
public function setLibRu($libRu)
{
$this->libRu = $libRu;
return $this;
}
/**
* Get libRu
*
* @return string
*/
public function getLibRu()
{
return $this->libRu;
}
/**
* Set libPt
*
* @param string $libPt
*
* @return ApidaeReferenceElement
*/
public function setLibPt($libPt)
{
$this->libPt = $libPt;
return $this;
}
/**
* Get libPt
*
* @return string
*/
public function getLibPt()
{
return $this->libPt;
}
/**
* Set libCn
*
* @param string $libCn
*
* @return ApidaeReferenceElement
*/
public function setLibCn($libCn)
{
$this->libCn = $libCn;
return $this;
}
/**
* Get libCn
*
* @return string
*/
public function getLibCn()
{
return $this->libCn;
}
/**
* Set criterionName
*
* @param string $criterionName
*
* @return ApidaeReferenceElement
*/
public function setCriterionName($criterionName)
{
$this->criterionName = $criterionName;
return $this;
}
/**
* Get criterionName
*
* @return string
*/
public function getCriterionName()
{
return $this->criterionName;
}
/**
* Set famille
*
* @param string $famille
*
* @return ApidaeReferenceElement
*/
public function setFamille($famille)
{
$this->famille = $famille;
return $this;
}
/**
* Get famille
*
* @return string
*/
public function getFamille()
{
return $this->famille;
}
/**
* Set familleId
*
* @param string $familleId
*
* @return ApidaeReferenceElement
*/
public function setFamilleId($familleId)
{
$this->familleId = $familleId;
return $this;
}
/**
* Get familleId
*
* @return string
*/
public function getFamilleId()
{
return $this->familleId;
}
/**
* Set familleTif
*
* @param string $familleTif
*
* @return ApidaeReferenceElement
*/
public function setFamilleTif($familleTif)
{
$this->familleTif = $familleTif;
return $this;
}
/**
* Get familleTif
*
* @return string
*/
public function getFamilleTif()
{
return $this->familleTif;
}
/**
* Set parent
*
* @param string $parent
*
* @return ApidaeReferenceElement
*/
public function setParent($parent)
{
$this->parent = $parent;
return $this;
}
/**
* Get parent
*
* @return string
*/
public function getParent()
{
return $this->parent;
}
/**
* Set parentId
*
* @param string $parentId
*
* @return ApidaeReferenceElement
*/
public function setParentId($parentId)
{
$this->parentId = $parentId;
return $this;
}
/**
* Get parentId
*
* @return string
*/
public function getParentId()
{
return $this->parentId;
}
/**
* Set parentTif
*
* @param string $parentTif
*
* @return ApidaeReferenceElement
*/
public function setParentTif($parentTif)
{
$this->parentTif = $parentTif;
return $this;
}
/**
* Get parentTif
*
* @return string
*/
public function getParentTif()
{
return $this->parentTif;
}
/**
* Set etat
*
* @param string $etat
*
* @return ApidaeReferenceElement
*/
public function setEtat($etat)
{
$this->etat = $etat;
return $this;
}
/**
* Get etat
*
* @return string
*/
public function getEtat()
{
return $this->etat;
}
/**
* Set ordre
*
* @param integer $ordre
*
* @return ApidaeReferenceElement
*/
public function setOrdre($ordre)
{
$this->ordre = $ordre;
return $this;
}
/**
* Get ordre
*
* @return integer
*/
public function getOrdre()
{
return $this->ordre;
}
/**
* Set id
*
* @param integer $id
*
* @return ApidaeReferenceElement
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
}