<?phpnamespace App\Entity\Gos;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass="App\Repository\Gos\EndingEventPartsRepository") */class EndingEventParts{ /** * @ORM\Id() * @ORM\GeneratedValue() * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=180) */ private $userEmail; /** * @ORM\Column(type="string", length=255) */ private $productTradeName; /** * @ORM\Column(type="integer") */ private $productNo; /** * @ORM\Column(type="boolean") */ private $isSent; /** * @ORM\Column(type="integer") */ private $orderProductVariantId; public function getId(): ?int { return $this->id; } public function getUserEmail(): ?string { return $this->userEmail; } public function setUserEmail(string $userEmail): self { $this->userEmail = $userEmail; return $this; } public function getProductTradeName(): ?string { return $this->productTradeName; } public function setProductTradeName(string $productTradeName): self { $this->productTradeName = $productTradeName; return $this; } public function getProductNo(): ?int { return $this->productNo; } public function setProductNo(int $productNo): self { $this->productNo = $productNo; return $this; } public function getIsSent(): ?bool { return $this->isSent; } public function setIsSent(bool $isSent): self { $this->isSent = $isSent; return $this; } public function getOrderProductVariantId(): ?int { return $this->orderProductVariantId; } public function setOrderProductVariantId(int $orderProductVariantId): self { $this->orderProductVariantId = $orderProductVariantId; return $this; }}