src/Entity/ApidaeReferenceElement.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ApidaeReferenceElemant
  6.  * @ORM\Table(name="apidae_reference_element")
  7.  * @ORM\Entity(repositoryClass="App\Repository\ApidaeReferenceElementRepository")
  8.  */
  9. class ApidaeReferenceElement
  10. {
  11.     /**
  12.      * @var integer
  13.      * @ORM\Column(name="id", type="integer")
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue(strategy="SEQUENCE")
  16.      * @ORM\SequenceGenerator(sequenceName="apidae_referenceelement_id_seq", allocationSize=1, initialValue=1)
  17.      */
  18.     private $id;
  19.     /**
  20.      * @var string
  21.      * @ORM\Column(name="code_tif",type="string", length=255, nullable=true)
  22.      */
  23.     private $codeTif;
  24.     /**
  25.      * @var string
  26.      * @ORM\Column(name="lib_fr",type="string", length=255, nullable=true)
  27.      */
  28.     private $libFr;
  29.     /**
  30.      * @var string
  31.      * @ORM\Column(name="lib_en",type="string", length=255, nullable=true)
  32.      */
  33.     private $libEn;
  34.     /**
  35.      * @var string
  36.      * @ORM\Column(name="lib_de",type="string", length=255, nullable=true)
  37.      */
  38.     private $libDe;
  39.     /**
  40.      * @var string
  41.      * @ORM\Column(name="lib_es",type="string", length=255, nullable=true)
  42.      */
  43.     private $libEs;
  44.     /**
  45.      * @var string
  46.      * @ORM\Column(name="lib_it",type="string", length=255, nullable=true)
  47.      */
  48.     private $libIt;
  49.     /**
  50.      * @var string
  51.      * @ORM\Column(name="lib_nl",type="string", length=255, nullable=true)
  52.      */
  53.     private $libNl;
  54.     /**
  55.      * @var string
  56.      * @ORM\Column(name="lib_ru",type="string", length=255, nullable=true)
  57.      */
  58.     private $libRu;
  59.     /**
  60.      * @var string
  61.      * @ORM\Column(name="lib_pt",type="string", length=255, nullable=true)
  62.      */
  63.     private $libPt;
  64.     /**
  65.      * @var string
  66.      * @ORM\Column(name="lib_cn",type="string", length=255, nullable=true)
  67.      */
  68.     private $libCn;
  69.     /**
  70.      * @var string
  71.      * @ORM\Column(name="criterion_name",type="string", length=255, nullable=true)
  72.      */
  73.     private $criterionName;
  74.     /**
  75.      * @var string
  76.      * @ORM\Column(name="famille",type="string", length=255, nullable=true)
  77.      */
  78.     private $famille;
  79.     /**
  80.      * @var string
  81.      * @ORM\Column(name="famille_id",type="string", length=255, nullable=true)
  82.      */
  83.     private $familleId;
  84.     /**
  85.      * @var string
  86.      * @ORM\Column(name="famille_tif",type="string", length=255, nullable=true)
  87.      */
  88.     private $familleTif;
  89.     /**
  90.      * @var string
  91.      * @ORM\Column(name="parent",type="string", length=255, nullable=true)
  92.      */
  93.     private $parent;
  94.     /**
  95.      * @var string
  96.      * @ORM\Column(name="parent_id",type="string", length=255, nullable=true)
  97.      */
  98.     private $parentId;
  99.     /**
  100.      * @var string
  101.      * @ORM\Column(name="parent_tif",type="string", length=255, nullable=true)
  102.      */
  103.     private $parentTif;
  104.     /**
  105.      * @var string
  106.      * @ORM\Column(name="etat",type="string", length=255, nullable=true)
  107.      */
  108.     private $etat;
  109.     /**
  110.      * @var integer
  111.      * @ORM\Column(name="ordre",type="integer", nullable=true)
  112.      */
  113.     private $ordre;
  114.     /**
  115.      * Set codeTif
  116.      *
  117.      * @param string $codeTif
  118.      *
  119.      * @return ApidaeReferenceElement
  120.      */
  121.     public function setCodeTif($codeTif)
  122.     {
  123.         $this->codeTif $codeTif;
  124.         return $this;
  125.     }
  126.     /**
  127.      * Get codeTif
  128.      *
  129.      * @return string
  130.      */
  131.     public function getCodeTif()
  132.     {
  133.         return $this->codeTif;
  134.     }
  135.     /**
  136.      * Set libFr
  137.      *
  138.      * @param string $libFr
  139.      *
  140.      * @return ApidaeReferenceElement
  141.      */
  142.     public function setLibFr($libFr)
  143.     {
  144.         $this->libFr $libFr;
  145.         return $this;
  146.     }
  147.     /**
  148.      * Get libFr
  149.      *
  150.      * @return string
  151.      */
  152.     public function getLibFr()
  153.     {
  154.         return $this->libFr;
  155.     }
  156.     /**
  157.      * Set libEn
  158.      *
  159.      * @param string $libEn
  160.      *
  161.      * @return ApidaeReferenceElement
  162.      */
  163.     public function setLibEn($libEn)
  164.     {
  165.         $this->libEn $libEn;
  166.         return $this;
  167.     }
  168.     /**
  169.      * Get libEn
  170.      *
  171.      * @return string
  172.      */
  173.     public function getLibEn()
  174.     {
  175.         return $this->libEn;
  176.     }
  177.     /**
  178.      * Set libDe
  179.      *
  180.      * @param string $libDe
  181.      *
  182.      * @return ApidaeReferenceElement
  183.      */
  184.     public function setLibDe($libDe)
  185.     {
  186.         $this->libDe $libDe;
  187.         return $this;
  188.     }
  189.     /**
  190.      * Get libDe
  191.      *
  192.      * @return string
  193.      */
  194.     public function getLibDe()
  195.     {
  196.         return $this->libDe;
  197.     }
  198.     /**
  199.      * Set libEs
  200.      *
  201.      * @param string $libEs
  202.      *
  203.      * @return ApidaeReferenceElement
  204.      */
  205.     public function setLibEs($libEs)
  206.     {
  207.         $this->libEs $libEs;
  208.         return $this;
  209.     }
  210.     /**
  211.      * Get libEs
  212.      *
  213.      * @return string
  214.      */
  215.     public function getLibEs()
  216.     {
  217.         return $this->libEs;
  218.     }
  219.     /**
  220.      * Set libIt
  221.      *
  222.      * @param string $libIt
  223.      *
  224.      * @return ApidaeReferenceElement
  225.      */
  226.     public function setLibIt($libIt)
  227.     {
  228.         $this->libIt $libIt;
  229.         return $this;
  230.     }
  231.     /**
  232.      * Get libIt
  233.      *
  234.      * @return string
  235.      */
  236.     public function getLibIt()
  237.     {
  238.         return $this->libIt;
  239.     }
  240.     /**
  241.      * Set libNl
  242.      *
  243.      * @param string $libNl
  244.      *
  245.      * @return ApidaeReferenceElement
  246.      */
  247.     public function setLibNl($libNl)
  248.     {
  249.         $this->libNl $libNl;
  250.         return $this;
  251.     }
  252.     /**
  253.      * Get libNl
  254.      *
  255.      * @return string
  256.      */
  257.     public function getLibNl()
  258.     {
  259.         return $this->libNl;
  260.     }
  261.     /**
  262.      * Set libRu
  263.      *
  264.      * @param string $libRu
  265.      *
  266.      * @return ApidaeReferenceElement
  267.      */
  268.     public function setLibRu($libRu)
  269.     {
  270.         $this->libRu $libRu;
  271.         return $this;
  272.     }
  273.     /**
  274.      * Get libRu
  275.      *
  276.      * @return string
  277.      */
  278.     public function getLibRu()
  279.     {
  280.         return $this->libRu;
  281.     }
  282.     /**
  283.      * Set libPt
  284.      *
  285.      * @param string $libPt
  286.      *
  287.      * @return ApidaeReferenceElement
  288.      */
  289.     public function setLibPt($libPt)
  290.     {
  291.         $this->libPt $libPt;
  292.         return $this;
  293.     }
  294.     /**
  295.      * Get libPt
  296.      *
  297.      * @return string
  298.      */
  299.     public function getLibPt()
  300.     {
  301.         return $this->libPt;
  302.     }
  303.     /**
  304.      * Set libCn
  305.      *
  306.      * @param string $libCn
  307.      *
  308.      * @return ApidaeReferenceElement
  309.      */
  310.     public function setLibCn($libCn)
  311.     {
  312.         $this->libCn $libCn;
  313.         return $this;
  314.     }
  315.     /**
  316.      * Get libCn
  317.      *
  318.      * @return string
  319.      */
  320.     public function getLibCn()
  321.     {
  322.         return $this->libCn;
  323.     }
  324.     /**
  325.      * Set criterionName
  326.      *
  327.      * @param string $criterionName
  328.      *
  329.      * @return ApidaeReferenceElement
  330.      */
  331.     public function setCriterionName($criterionName)
  332.     {
  333.         $this->criterionName $criterionName;
  334.         return $this;
  335.     }
  336.     /**
  337.      * Get criterionName
  338.      *
  339.      * @return string
  340.      */
  341.     public function getCriterionName()
  342.     {
  343.         return $this->criterionName;
  344.     }
  345.     /**
  346.      * Set famille
  347.      *
  348.      * @param string $famille
  349.      *
  350.      * @return ApidaeReferenceElement
  351.      */
  352.     public function setFamille($famille)
  353.     {
  354.         $this->famille $famille;
  355.         return $this;
  356.     }
  357.     /**
  358.      * Get famille
  359.      *
  360.      * @return string
  361.      */
  362.     public function getFamille()
  363.     {
  364.         return $this->famille;
  365.     }
  366.     /**
  367.      * Set familleId
  368.      *
  369.      * @param string $familleId
  370.      *
  371.      * @return ApidaeReferenceElement
  372.      */
  373.     public function setFamilleId($familleId)
  374.     {
  375.         $this->familleId $familleId;
  376.         return $this;
  377.     }
  378.     /**
  379.      * Get familleId
  380.      *
  381.      * @return string
  382.      */
  383.     public function getFamilleId()
  384.     {
  385.         return $this->familleId;
  386.     }
  387.     /**
  388.      * Set familleTif
  389.      *
  390.      * @param string $familleTif
  391.      *
  392.      * @return ApidaeReferenceElement
  393.      */
  394.     public function setFamilleTif($familleTif)
  395.     {
  396.         $this->familleTif $familleTif;
  397.         return $this;
  398.     }
  399.     /**
  400.      * Get familleTif
  401.      *
  402.      * @return string
  403.      */
  404.     public function getFamilleTif()
  405.     {
  406.         return $this->familleTif;
  407.     }
  408.     /**
  409.      * Set parent
  410.      *
  411.      * @param string $parent
  412.      *
  413.      * @return ApidaeReferenceElement
  414.      */
  415.     public function setParent($parent)
  416.     {
  417.         $this->parent $parent;
  418.         return $this;
  419.     }
  420.     /**
  421.      * Get parent
  422.      *
  423.      * @return string
  424.      */
  425.     public function getParent()
  426.     {
  427.         return $this->parent;
  428.     }
  429.     /**
  430.      * Set parentId
  431.      *
  432.      * @param string $parentId
  433.      *
  434.      * @return ApidaeReferenceElement
  435.      */
  436.     public function setParentId($parentId)
  437.     {
  438.         $this->parentId $parentId;
  439.         return $this;
  440.     }
  441.     /**
  442.      * Get parentId
  443.      *
  444.      * @return string
  445.      */
  446.     public function getParentId()
  447.     {
  448.         return $this->parentId;
  449.     }
  450.     /**
  451.      * Set parentTif
  452.      *
  453.      * @param string $parentTif
  454.      *
  455.      * @return ApidaeReferenceElement
  456.      */
  457.     public function setParentTif($parentTif)
  458.     {
  459.         $this->parentTif $parentTif;
  460.         return $this;
  461.     }
  462.     /**
  463.      * Get parentTif
  464.      *
  465.      * @return string
  466.      */
  467.     public function getParentTif()
  468.     {
  469.         return $this->parentTif;
  470.     }
  471.     /**
  472.      * Set etat
  473.      *
  474.      * @param string $etat
  475.      *
  476.      * @return ApidaeReferenceElement
  477.      */
  478.     public function setEtat($etat)
  479.     {
  480.         $this->etat $etat;
  481.         return $this;
  482.     }
  483.     /**
  484.      * Get etat
  485.      *
  486.      * @return string
  487.      */
  488.     public function getEtat()
  489.     {
  490.         return $this->etat;
  491.     }
  492.     /**
  493.      * Set ordre
  494.      *
  495.      * @param integer $ordre
  496.      *
  497.      * @return ApidaeReferenceElement
  498.      */
  499.     public function setOrdre($ordre)
  500.     {
  501.         $this->ordre $ordre;
  502.         return $this;
  503.     }
  504.     /**
  505.      * Get ordre
  506.      *
  507.      * @return integer
  508.      */
  509.     public function getOrdre()
  510.     {
  511.         return $this->ordre;
  512.     }
  513.     /**
  514.      * Set id
  515.      *
  516.      * @param integer $id
  517.      *
  518.      * @return ApidaeReferenceElement
  519.      */
  520.     public function setId($id)
  521.     {
  522.         $this->id $id;
  523.         return $this;
  524.     }
  525.     /**
  526.      * Get id
  527.      *
  528.      * @return integer
  529.      */
  530.     public function getId()
  531.     {
  532.         return $this->id;
  533.     }
  534. }