src/Entity/Account.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Sulu\Bundle\ContactBundle\Entity\Account as SuluAccount;
  5. #[ORM\Entity]
  6. #[ORM\Table('co_accounts')]
  7. class Account extends SuluAccount
  8. {
  9.     #[ORM\Column(length255nullabletrue)]
  10.     private ?string $identificationNumber null;
  11.     #[ORM\Column(length255nullabletrue)]
  12.     private ?string $taxIdentificationNumber null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $caseNumber null;
  15.     public function getIdentificationNumber(): ?string
  16.     {
  17.         return $this->identificationNumber;
  18.     }
  19.     public function setIdentificationNumber(?string $identificationNumber): static
  20.     {
  21.         $this->identificationNumber $identificationNumber;
  22.         return $this;
  23.     }
  24.     public function getTaxIdentificationNumber(): ?string
  25.     {
  26.         return $this->taxIdentificationNumber;
  27.     }
  28.     public function setTaxIdentificationNumber(?string $taxIdentificationNumber): static
  29.     {
  30.         $this->taxIdentificationNumber $taxIdentificationNumber;
  31.         return $this;
  32.     }
  33.     public function getCaseNumber(): ?string
  34.     {
  35.         return $this->caseNumber;
  36.     }
  37.     public function setCaseNumber(?string $caseNumber): static
  38.     {
  39.         $this->caseNumber $caseNumber;
  40.         return $this;
  41.     }
  42. }