Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.62 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Entity;
  4.  
  5. use Doctrine\ORM\Mapping as ORM;
  6. use function trim;
  7.  
  8. /**
  9.  * @ORM\Entity()
  10.  */
  11. class UArticle
  12. {
  13.     /**
  14.      * @ORM\Column(type="string", length=255, name="ARKTCODART")
  15.      *
  16.      * @ORM\Id()
  17.      *
  18.      * @var string|null
  19.      */
  20.     protected $arktcodart;
  21.  
  22.     /**
  23.      * @ORM\Column(type="string", length=255, name="ARKTCOMART")
  24.      *
  25.      * @var string|null
  26.      */
  27.     protected $arktcomart;
  28.  
  29.     /**
  30.      * @ORM\Column(type="string", length=255, name="ARKTSOC")
  31.      *
  32.      * @var string|null
  33.      */
  34.     protected $arktsoc;
  35.  
  36.     /**
  37.      * @ORM\Column(type="string", length=255, name="PP")
  38.      *
  39.      * @var string|null
  40.      */
  41.     protected $codePositionnement;
  42.  
  43.     public function getArktcodart(): ?string
  44.     {
  45.         return trim($this->arktcodart);
  46.     }
  47.  
  48.     public function setArktcodart(?string $arktcodart): void
  49.     {
  50.         $this->arktcodart = $arktcodart;
  51.     }
  52.  
  53.     public function getArktcomart(): ?string
  54.     {
  55.         return trim($this->arktcomart);
  56.     }
  57.  
  58.     public function setArktcomart(?string $arktcomart): void
  59.     {
  60.         $this->arktcomart = $arktcomart;
  61.     }
  62.  
  63.     public function getArktsoc(): ?string
  64.     {
  65.         return trim($this->arktsoc);
  66.     }
  67.  
  68.     public function setArktsoc(?string $arktsoc): void
  69.     {
  70.         $this->arktsoc = $arktsoc;
  71.     }
  72.  
  73.     public function getCodePositionnement(): ?string
  74.     {
  75.         return $this->codePositionnement;
  76.     }
  77.  
  78.     public function setCodePositionnement(?string $codePositionnement): void
  79.     {
  80.         $this->codePositionnement = $codePositionnement;
  81.     }
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement