src/Entity/Gos/EndingEventParts.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Gos;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\Gos\EndingEventPartsRepository")
  6.  */
  7. class EndingEventParts
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     /**
  16.      * @ORM\Column(type="string", length=180)
  17.      */
  18.     private $userEmail;
  19.     /**
  20.      * @ORM\Column(type="string", length=255)
  21.      */
  22.     private $productTradeName;
  23.     /**
  24.      * @ORM\Column(type="integer")
  25.      */
  26.     private $productNo;
  27.     /**
  28.      * @ORM\Column(type="boolean")
  29.      */
  30.     private $isSent;
  31.     /**
  32.      * @ORM\Column(type="integer")
  33.      */
  34.     private $orderProductVariantId;
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getUserEmail(): ?string
  40.     {
  41.         return $this->userEmail;
  42.     }
  43.     public function setUserEmail(string $userEmail): self
  44.     {
  45.         $this->userEmail $userEmail;
  46.         return $this;
  47.     }
  48.     public function getProductTradeName(): ?string
  49.     {
  50.         return $this->productTradeName;
  51.     }
  52.     public function setProductTradeName(string $productTradeName): self
  53.     {
  54.         $this->productTradeName $productTradeName;
  55.         return $this;
  56.     }
  57.     public function getProductNo(): ?int
  58.     {
  59.         return $this->productNo;
  60.     }
  61.     public function setProductNo(int $productNo): self
  62.     {
  63.         $this->productNo $productNo;
  64.         return $this;
  65.     }
  66.     public function getIsSent(): ?bool
  67.     {
  68.         return $this->isSent;
  69.     }
  70.     public function setIsSent(bool $isSent): self
  71.     {
  72.         $this->isSent $isSent;
  73.         return $this;
  74.     }
  75.     public function getOrderProductVariantId(): ?int
  76.     {
  77.         return $this->orderProductVariantId;
  78.     }
  79.     public function setOrderProductVariantId(int $orderProductVariantId): self
  80.     {
  81.         $this->orderProductVariantId $orderProductVariantId;
  82.         return $this;
  83.     }
  84. }