src/Entity/MobileVersion.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. #[ORM\Entity(repositoryClass\App\Repository\MobileVersionRepository::class)]
  5. class MobileVersion
  6. {
  7.     #[ORM\Id]
  8.     #[ORM\GeneratedValue]
  9.     #[ORM\Column(type'integer')]
  10.     private int $id;
  11.     #[ORM\Column(type'string'length255nullabletrue)]
  12.     private ?string $kindnull;
  13.     #[ORM\Column(type'string'length255nullabletrue)]
  14.     private ?string $devicenull;
  15.     #[ORM\Column(type'string'length255nullabletrue)]
  16.     private ?string $codenull;
  17.     #[ORM\Column(type'string'length255nullabletrue)]
  18.     private ?string $display_namenull;
  19.     public function getId(): ?int
  20.     {
  21.         return $this->id;
  22.     }
  23.     public function getKind(): ?string
  24.     {
  25.         return $this->kind;
  26.     }
  27.     public function setKind(?string $kind): self
  28.     {
  29.         $this->kind $kind;
  30.         return $this;
  31.     }
  32.     public function getDevice(): ?string
  33.     {
  34.         return $this->device;
  35.     }
  36.     public function setDevice(?string $device): self
  37.     {
  38.         $this->device $device;
  39.         return $this;
  40.     }
  41.     public function getCode(): ?string
  42.     {
  43.         return $this->code;
  44.     }
  45.     public function setCode(?string $code): self
  46.     {
  47.         $this->code $code;
  48.         return $this;
  49.     }
  50.     public function getDisplayName(): ?string
  51.     {
  52.         return $this->display_name;
  53.     }
  54.     public function setDisplayName(?string $display_name): self
  55.     {
  56.         $this->display_name $display_name;
  57.         return $this;
  58.     }
  59. }