src/Entity/Typeimport.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\DBAL\Types\Types;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * Typeimport
  7. *
  8. * @ORM\Table(name="TYPEIMPORT")
  9. * @ORM\Entity
  10. */
  11. class Typeimport
  12. {
  13. /**
  14. * @var int
  15. *
  16. * @ORM\Column(name="idtypeimport", type="integer", nullable=false)
  17. * @ORM\Id
  18. * @ORM\GeneratedValue(strategy="IDENTITY")
  19. */
  20. private $idtypeimport;
  21. /**
  22. * @var string
  23. *
  24. * @ORM\Column(name="libelletypeimport", type="string", length=255, nullable=false)
  25. */
  26. private $libelletypeimport;
  27. /**
  28. * @var string|null
  29. *
  30. * @ORM\Column(name="colonnes", type="text", length=0, nullable=true)
  31. */
  32. private $colonnes;
  33. /**
  34. * @var string|null
  35. *
  36. * @ORM\Column(name="nomtraitement", type="string", length=255, nullable=true)
  37. */
  38. private $nomtraitement;
  39. /**
  40. * @var string
  41. *
  42. * @ORM\Column(name="nombase", type="string", length=255, nullable=false)
  43. */
  44. private $nombase;
  45. /**
  46. * @var string|null
  47. *
  48. * @ORM\Column(name="colonnesgeneriques", type="text", length=0, nullable=true)
  49. */
  50. private $colonnesgeneriques;
  51. /**
  52. * @var string|null
  53. *
  54. * @ORM\Column(name="identificationkey", type="text", length=0, nullable=true)
  55. */
  56. private $identificationkey;
  57. public function getIdtypeimport(): ?int
  58. {
  59. return $this->idtypeimport;
  60. }
  61. public function getLibelletypeimport(): ?string
  62. {
  63. return $this->libelletypeimport;
  64. }
  65. public function setLibelletypeimport(string $libelletypeimport): static
  66. {
  67. $this->libelletypeimport = $libelletypeimport;
  68. return $this;
  69. }
  70. public function getColonnes(): ?string
  71. {
  72. return $this->colonnes;
  73. }
  74. public function setColonnes(?string $colonnes): static
  75. {
  76. $this->colonnes = $colonnes;
  77. return $this;
  78. }
  79. public function getNomtraitement(): ?string
  80. {
  81. return $this->nomtraitement;
  82. }
  83. public function setNomtraitement(?string $nomtraitement): static
  84. {
  85. $this->nomtraitement = $nomtraitement;
  86. return $this;
  87. }
  88. public function getNombase(): ?string
  89. {
  90. return $this->nombase;
  91. }
  92. public function setNombase(string $nombase): static
  93. {
  94. $this->nombase = $nombase;
  95. return $this;
  96. }
  97. public function getColonnesgeneriques(): ?string
  98. {
  99. return $this->colonnesgeneriques;
  100. }
  101. public function setColonnesgeneriques(?string $colonnesgeneriques): static
  102. {
  103. $this->colonnesgeneriques = $colonnesgeneriques;
  104. return $this;
  105. }
  106. public function getIdentificationkey(): ?string
  107. {
  108. return $this->identificationkey;
  109. }
  110. public function setIdentificationkey(?string $identificationkey): static
  111. {
  112. $this->identificationkey = $identificationkey;
  113. return $this;
  114. }
  115. }