<?phpnamespace App\Entity;use App\Repository\InquirySupplierRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=InquirySupplierRepository::class) */class InquirySupplier{ /** * @ORM\Id() * @ORM\GeneratedValue() * @ORM\Column(type="integer") */ private $id; /** * @ORM\ManyToOne(targetEntity="App\Entity\Inquiry", inversedBy="inquirySuppliers") * @ORM\JoinColumn(nullable=false) */ private $inquiry; /** * @ORM\ManyToOne(targetEntity="App\Entity\Customer") * @ORM\JoinColumn(nullable=false) */ private $customer; /** * @ORM\ManyToOne(targetEntity="App\Entity\CustomerAddress") */ private $customerAddress; /** * @ORM\Column(type="boolean", options={"default" : false}) */ private $seen = false; /** * @ORM\Column(type="boolean", options={"default" : false}) */ private $reminderSent = false; public function getId(): ?int { return $this->id; } public function getInquiry() { return $this->inquiry; } public function setInquiry(Inquiry $inquiry): self { $this->inquiry = $inquiry; return $this; } public function getCustomer() { return $this->customer; } public function setCustomer(Customer $customer): self { $this->customer = $customer; return $this; } public function getCustomerAddress() { return $this->customerAddress; } public function setCustomerAddress(CustomerAddress $customerAddress): self { $this->customerAddress = $customerAddress; return $this; } public function setSeen(bool $seen): void { $this->seen = $seen; } public function isSeen(): bool { return $this->seen; } public function isReminderSent(): bool { return $this->reminderSent; } public function setReminderSent(bool $reminderSent): void { $this->reminderSent = $reminderSent; }}