src/Entity/CustomerTaxInformation.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerTaxInformationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassCustomerTaxInformationRepository::class)]
  6. class CustomerTaxInformation
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(nullabletrue)]
  13.     private ?string $taxNumber;
  14.     #[ORM\Column(nullabletrue)]
  15.     private ?string $registerNumber;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?string $ust;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?string $law;
  20.     #[ORM\OneToOne(mappedBy'taxInformation'targetEntityCustomer::class, cascade: ['persist''remove'])]
  21.     private ?Customer $customer null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getTaxNumber(): ?string
  27.     {
  28.         return $this->taxNumber;
  29.     }
  30.     public function setTaxNumber(?string $taxNumber): self
  31.     {
  32.         $this->taxNumber $taxNumber;
  33.         return $this;
  34.     }
  35.     public function getRegisterNumber(): ?string
  36.     {
  37.         return $this->registerNumber;
  38.     }
  39.     public function setRegisterNumber(?string $registerNumber): self
  40.     {
  41.         $this->registerNumber $registerNumber;
  42.         return $this;
  43.     }
  44.     public function getUst(): ?string
  45.     {
  46.         return $this->ust;
  47.     }
  48.     public function setUst(?string $ust): self
  49.     {
  50.         $this->ust $ust;
  51.         return $this;
  52.     }
  53.     public function getLaw(): ?string
  54.     {
  55.         return $this->law;
  56.     }
  57.     public function setLaw(?string $law): self
  58.     {
  59.         $this->law $law;
  60.         return $this;
  61.     }
  62.     public function getCustomer(): ?Customer
  63.     {
  64.         return $this->customer;
  65.     }
  66.     public function setCustomer(Customer $customer): self
  67.     {
  68.         $this->customer $customer;
  69.         return $this;
  70.     }
  71. }