src/Entity/Prospect.php line 26

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use ApiPlatform\Metadata\GET;
  5. use ApiPlatform\Metadata\Post;
  6. use ApiPlatform\Metadata\Put;
  7. use App\Model\EntityTime;
  8. use App\Repository\ProspectRepository;
  9. use App\State\ProspectPostProcessor;
  10. use Doctrine\DBAL\Types\Types;
  11. use Doctrine\ORM\Mapping as ORM;
  12. use Symfony\Component\Serializer\Annotation\Groups;
  13. #[ApiResource(
  14.     operations: [
  15.         new Post(processorProspectPostProcessor::class),
  16.         new Get(),
  17.         new Put()
  18.     ],
  19.     normalizationContext: ['groups' => ['identifier:read''prospect:read']],
  20.     denormalizationContext: ['groups' => ['prospect:write']]
  21. )]
  22. #[ORM\Entity(repositoryClassProspectRepository::class)]
  23. class Prospect extends EntityTime
  24. {
  25.     #[ORM\Column(length60)]
  26.     #[Groups(['prospect:read''prospect:write'])]
  27.     private ?string $firstName null;
  28.     #[ORM\Column(length60)]
  29.     #[Groups(['prospect:read''prospect:write'])]
  30.     private ?string $lastName null;
  31.     #[ORM\Column(length100nullabletrue)]
  32.     #[Groups(['prospect:read''prospect:write'])]
  33.     private ?string $companyName null;
  34.     #[ORM\Column(length100nullabletrue)]
  35.     #[Groups(['prospect:read''prospect:write'])]
  36.     private ?string $jobTitle null// not used
  37.     #[ORM\Column(length255nullabletrue)]
  38.     #[Groups(['prospect:read''prospect:write'])]
  39.     private ?string $address null// not used
  40.     #[ORM\Column(length30nullabletrue)]
  41.     #[Groups(['prospect:read''prospect:write'])]
  42.     private ?string $postalCode null;
  43.     #[ORM\Column(length40nullabletrue)]
  44.     #[Groups(['prospect:read''prospect:write'])]
  45.     private ?string $city null;
  46.     #[ORM\Column(length40nullabletrue)]
  47.     #[Groups(['prospect:read''prospect:write'])]
  48.     private ?string $country null;
  49.     #[ORM\Column(length30nullabletrue)]
  50.     #[Groups(['prospect:read''prospect:write'])]
  51.     private ?string $phone null;
  52.     #[ORM\Column(length100)]
  53.     #[Groups(['prospect:read''prospect:write'])]
  54.     private ?string $email null;
  55.     #[ORM\Column]
  56.     #[Groups(['prospect:read''prospect:write'])]
  57.     private ?bool $isCustomer false;
  58.     #[ORM\OneToOne(mappedBy'prospect'cascade: ['persist''remove'])]
  59.     #[Groups(['prospect:write'])]
  60.     private ?Configuration $configuration null;
  61.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  62.     #[Groups(['prospect:read''prospect:write'])]
  63.     private ?string $message null// not used
  64.     #[ORM\ManyToOne]
  65.     private ?ActivityArea $activityArea null// not used
  66.     public function getFirstName(): ?string
  67.     {
  68.         return $this->firstName;
  69.     }
  70.     public function setFirstName(string $firstName): self
  71.     {
  72.         $this->firstName $firstName;
  73.         return $this;
  74.     }
  75.     public function getLastName(): ?string
  76.     {
  77.         return $this->lastName;
  78.     }
  79.     public function setLastName(string $lastName): self
  80.     {
  81.         $this->lastName $lastName;
  82.         return $this;
  83.     }
  84.     public function getCompanyName(): ?string
  85.     {
  86.         return $this->companyName;
  87.     }
  88.     public function setCompanyName(?string $companyName): self
  89.     {
  90.         $this->companyName $companyName;
  91.         return $this;
  92.     }
  93.     public function getJobTitle(): ?string
  94.     {
  95.         return $this->jobTitle;
  96.     }
  97.     public function setJobTitle(?string $jobTitle): self
  98.     {
  99.         $this->jobTitle $jobTitle;
  100.         return $this;
  101.     }
  102.     public function getAddress(): ?string
  103.     {
  104.         return $this->address;
  105.     }
  106.     public function setAddress(?string $address): self
  107.     {
  108.         $this->address $address;
  109.         return $this;
  110.     }
  111.     public function getPostalCode(): ?string
  112.     {
  113.         return $this->postalCode;
  114.     }
  115.     public function setPostalCode(?string $postalCode): self
  116.     {
  117.         $this->postalCode $postalCode;
  118.         return $this;
  119.     }
  120.     public function getCity(): ?string
  121.     {
  122.         return $this->city;
  123.     }
  124.     public function setCity(?string $city): self
  125.     {
  126.         $this->city $city;
  127.         return $this;
  128.     }
  129.     public function getCountry(): ?string
  130.     {
  131.         return $this->country;
  132.     }
  133.     public function setCountry(?string $country): self
  134.     {
  135.         $this->country $country;
  136.         return $this;
  137.     }
  138.     public function getPhone(): ?string
  139.     {
  140.         return $this->phone;
  141.     }
  142.     public function setPhone(?string $phone): self
  143.     {
  144.         $this->phone $phone;
  145.         return $this;
  146.     }
  147.     public function getEmail(): ?string
  148.     {
  149.         return $this->email;
  150.     }
  151.     public function setEmail(string $email): self
  152.     {
  153.         $this->email $email;
  154.         return $this;
  155.     }
  156.     public function isIsCustomer(): ?bool
  157.     {
  158.         return $this->isCustomer;
  159.     }
  160.     public function setIsCustomer(bool $isCustomer): self
  161.     {
  162.         $this->isCustomer $isCustomer;
  163.         return $this;
  164.     }
  165.     public function getConfiguration(): ?Configuration
  166.     {
  167.         return $this->configuration;
  168.     }
  169.     public function setConfiguration(?Configuration $configuration): self
  170.     {
  171.         // unset the owning side of the relation if necessary
  172.         if ($configuration === null && $this->configuration !== null) {
  173.             $this->configuration->setProspect(null);
  174.         }
  175.         // set the owning side of the relation if necessary
  176.         if ($configuration !== null && $configuration->getProspect() !== $this) {
  177.             $configuration->setProspect($this);
  178.         }
  179.         $this->configuration $configuration;
  180.         return $this;
  181.     }
  182.     public function getMessage(): ?string
  183.     {
  184.         return $this->message;
  185.     }
  186.     public function setMessage(?string $message): self
  187.     {
  188.         $this->message $message;
  189.         return $this;
  190.     }
  191.     public function getActivityArea(): ?ActivityArea
  192.     {
  193.         return $this->activityArea;
  194.     }
  195.     public function setActivityArea(?ActivityArea $activityArea): self
  196.     {
  197.         $this->activityArea $activityArea;
  198.         return $this;
  199.     }
  200. }