src/Entity/Applicant.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ApplicantRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassApplicantRepository::class)]
  7. class Applicant
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $businessName null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $businessLocation null;
  17.     #[ORM\Column(length255)]
  18.     private ?string $mediaChannel null;
  19.     #[ORM\Column(length255)]
  20.     private ?string $businessSector null;
  21.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  22.     private ?\DateTimeInterface $yearOfRegistration null;
  23.     #[ORM\Column(typeTypes::TEXT)]
  24.     private ?string $businessDescription null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private ?int $numberOfStaff null;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?int $males null;
  29.     #[ORM\Column(nullabletrue)]
  30.     private ?int $females null;
  31.     #[ORM\Column(length10nullabletrue)]
  32.     private ?string $monthlyRevenue null;
  33.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  34.     private ?string $reasonPeopleBuy null;
  35.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  36.     private ?string $newMarket null;
  37.     #[ORM\Column(length255nullabletrue)]
  38.     private ?string $previousProgram null;
  39.     #[ORM\Column(typeTypes::TEXT)]
  40.     private ?string $supportType null;
  41.     #[ORM\Column(length10)]
  42.     private ?string $bootcampAvailability null;
  43.     #[ORM\Column(length10)]
  44.     private ?string $workshopAvailability null;
  45.     #[ORM\Column(length10)]
  46.     private ?string $coachAvailability null;
  47.     #[ORM\Column]
  48.     private ?int $hoursPerMonths null;
  49.     #[ORM\Column(length255)]
  50.     private ?string $firstName null;
  51.     #[ORM\Column(length255)]
  52.     private ?string $surname null;
  53.     #[ORM\Column(length20nullabletrue)]
  54.     private ?string $telephoneNumber null;
  55.     #[ORM\Column(length20)]
  56.     private ?string $mobileNumber null;
  57.     #[ORM\Column(length255)]
  58.     private ?string $emailAddress null;
  59.     #[ORM\Column(length255nullabletrue)]
  60.     private ?string $organizationName null;
  61.     #[ORM\Column(length255)]
  62.     private ?string $legalStatus null;
  63.     #[ORM\Column(length255)]
  64.     private ?string $registrationNumber null;
  65.     #[ORM\Column(length10)]
  66.     private ?string $conductPolicy null;
  67.     #[ORM\Column(length255)]
  68.     private ?string $contactPerson null;
  69.     #[ORM\Column(length100)]
  70.     private ?string $contactPersonNumber null;
  71.     #[ORM\Column(length20)]
  72.     private ?string $uniqueId null;
  73.     #[ORM\Column(length255nullabletrue)]
  74.     private ?string $businessAccountNumber null;
  75.     #[ORM\Column(length255nullabletrue)]
  76.     private ?string $capacitySupport null;
  77.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  78.     private ?string $inquiries null;
  79.     #[ORM\Column]
  80.     private ?\DateTimeImmutable $createdAt null;
  81.     public function getId(): ?int
  82.     {
  83.         return $this->id;
  84.     }
  85.     public function getBusinessName(): ?string
  86.     {
  87.         return $this->businessName;
  88.     }
  89.     public function setBusinessName(string $businessName): self
  90.     {
  91.         $this->businessName $businessName;
  92.         return $this;
  93.     }
  94.     public function getBusinessLocation(): ?string
  95.     {
  96.         return $this->businessLocation;
  97.     }
  98.     public function setBusinessLocation(string $businessLocation): self
  99.     {
  100.         $this->businessLocation $businessLocation;
  101.         return $this;
  102.     }
  103.     public function getMediaChannel(): ?string
  104.     {
  105.         return $this->mediaChannel;
  106.     }
  107.     public function setMediaChannel(string $mediaChannel): self
  108.     {
  109.         $this->mediaChannel $mediaChannel;
  110.         return $this;
  111.     }
  112.     public function getBusinessSector(): ?string
  113.     {
  114.         return $this->businessSector;
  115.     }
  116.     public function setBusinessSector(string $businessSector): self
  117.     {
  118.         $this->businessSector $businessSector;
  119.         return $this;
  120.     }
  121.     public function getYearOfRegistration(): ?\DateTimeInterface
  122.     {
  123.         return $this->yearOfRegistration;
  124.     }
  125.     public function setYearOfRegistration(\DateTimeInterface $yearOfRegistration): self
  126.     {
  127.         $this->yearOfRegistration $yearOfRegistration;
  128.         return $this;
  129.     }
  130.     public function getBusinessDescription(): ?string
  131.     {
  132.         return $this->businessDescription;
  133.     }
  134.     public function setBusinessDescription(string $businessDescription): self
  135.     {
  136.         $this->businessDescription $businessDescription;
  137.         return $this;
  138.     }
  139.     public function getNumberOfStaff(): ?int
  140.     {
  141.         return $this->numberOfStaff;
  142.     }
  143.     public function setNumberOfStaff(?int $numberOfStaff): self
  144.     {
  145.         $this->numberOfStaff $numberOfStaff;
  146.         return $this;
  147.     }
  148.     public function getMales(): ?int
  149.     {
  150.         return $this->males;
  151.     }
  152.     public function setMales(?int $males): self
  153.     {
  154.         $this->males $males;
  155.         return $this;
  156.     }
  157.     public function getFemales(): ?int
  158.     {
  159.         return $this->females;
  160.     }
  161.     public function setFemales(?int $females): self
  162.     {
  163.         $this->females $females;
  164.         return $this;
  165.     }
  166.     public function getMonthlyRevenue(): ?string
  167.     {
  168.         return $this->monthlyRevenue;
  169.     }
  170.     public function setMonthlyRevenue(?string $monthlyRevenue): self
  171.     {
  172.         $this->monthlyRevenue $monthlyRevenue;
  173.         return $this;
  174.     }
  175.     public function getReasonPeopleBuy(): ?string
  176.     {
  177.         return $this->reasonPeopleBuy;
  178.     }
  179.     public function setReasonPeopleBuy(?string $reasonPeopleBuy): self
  180.     {
  181.         $this->reasonPeopleBuy $reasonPeopleBuy;
  182.         return $this;
  183.     }
  184.     public function getNewMarket(): ?string
  185.     {
  186.         return $this->newMarket;
  187.     }
  188.     public function setNewMarket(?string $newMarket): self
  189.     {
  190.         $this->newMarket $newMarket;
  191.         return $this;
  192.     }
  193.     public function getPreviousProgram(): ?string
  194.     {
  195.         return $this->previousProgram;
  196.     }
  197.     public function setPreviousProgram(?string $previousProgram): self
  198.     {
  199.         $this->previousProgram $previousProgram;
  200.         return $this;
  201.     }
  202.     public function getSupportType(): ?string
  203.     {
  204.         return $this->supportType;
  205.     }
  206.     public function setSupportType(string $supportType): self
  207.     {
  208.         $this->supportType $supportType;
  209.         return $this;
  210.     }
  211.     public function getBootcampAvailability(): ?string
  212.     {
  213.         return $this->bootcampAvailability;
  214.     }
  215.     public function setBootcampAvailability(string $bootcampAvailability): self
  216.     {
  217.         $this->bootcampAvailability $bootcampAvailability;
  218.         return $this;
  219.     }
  220.     public function getWorkshopAvailability(): ?string
  221.     {
  222.         return $this->workshopAvailability;
  223.     }
  224.     public function setWorkshopAvailability(string $workshopAvailability): self
  225.     {
  226.         $this->workshopAvailability $workshopAvailability;
  227.         return $this;
  228.     }
  229.     public function getCoachAvailability(): ?string
  230.     {
  231.         return $this->coachAvailability;
  232.     }
  233.     public function setCoachAvailability(string $coachAvailability): self
  234.     {
  235.         $this->coachAvailability $coachAvailability;
  236.         return $this;
  237.     }
  238.     public function getHoursPerMonths(): ?int
  239.     {
  240.         return $this->hoursPerMonths;
  241.     }
  242.     public function setHoursPerMonths(int $hoursPerMonths): self
  243.     {
  244.         $this->hoursPerMonths $hoursPerMonths;
  245.         return $this;
  246.     }
  247.     public function getFirstName(): ?string
  248.     {
  249.         return $this->firstName;
  250.     }
  251.     public function setFirstName(string $firstName): self
  252.     {
  253.         $this->firstName $firstName;
  254.         return $this;
  255.     }
  256.     public function getSurname(): ?string
  257.     {
  258.         return $this->surname;
  259.     }
  260.     public function setSurname(string $surname): self
  261.     {
  262.         $this->surname $surname;
  263.         return $this;
  264.     }
  265.     public function getTelephoneNumber(): ?string
  266.     {
  267.         return $this->telephoneNumber;
  268.     }
  269.     public function setTelephoneNumber(?string $telephoneNumber): self
  270.     {
  271.         $this->telephoneNumber $telephoneNumber;
  272.         return $this;
  273.     }
  274.     public function getMobileNumber(): ?string
  275.     {
  276.         return $this->mobileNumber;
  277.     }
  278.     public function setMobileNumber(string $mobileNumber): self
  279.     {
  280.         $this->mobileNumber $mobileNumber;
  281.         return $this;
  282.     }
  283.     public function getEmailAddress(): ?string
  284.     {
  285.         return $this->emailAddress;
  286.     }
  287.     public function setEmailAddress(string $emailAddress): self
  288.     {
  289.         $this->emailAddress $emailAddress;
  290.         return $this;
  291.     }
  292.     public function getLegalStatus(): ?string
  293.     {
  294.         return $this->legalStatus;
  295.     }
  296.     public function setLegalStatus(string $legalStatus): self
  297.     {
  298.         $this->legalStatus $legalStatus;
  299.         return $this;
  300.     }
  301.     public function getRegistrationNumber(): ?string
  302.     {
  303.         return $this->registrationNumber;
  304.     }
  305.     public function setRegistrationNumber(string $registrationNumber): self
  306.     {
  307.         $this->registrationNumber $registrationNumber;
  308.         return $this;
  309.     }
  310.     public function getConductPolicy(): ?string
  311.     {
  312.         return $this->conductPolicy;
  313.     }
  314.     public function setConductPolicy(string $conductPolicy): self
  315.     {
  316.         $this->conductPolicy $conductPolicy;
  317.         return $this;
  318.     }
  319.     public function getContactPerson(): ?string
  320.     {
  321.         return $this->contactPerson;
  322.     }
  323.     public function setContactPerson(string $contactPerson): self
  324.     {
  325.         $this->contactPerson $contactPerson;
  326.         return $this;
  327.     }
  328.     public function getContactPersonNumber(): ?string
  329.     {
  330.         return $this->contactPersonNumber;
  331.     }
  332.     public function setContactPersonNumber(string $contactPersonNumber): self
  333.     {
  334.         $this->contactPersonNumber $contactPersonNumber;
  335.         return $this;
  336.     }
  337.     public function getUniqueId(): ?string
  338.     {
  339.         return $this->uniqueId;
  340.     }
  341.     public function setUniqueId(string $uniqueId): self
  342.     {
  343.         $this->uniqueId $uniqueId;
  344.         return $this;
  345.     }
  346.     /**
  347.      * Get the value of organizationName
  348.      *
  349.      * @return ?string
  350.      */
  351.     public function getOrganizationName(): ?string
  352.     {
  353.         return $this->organizationName;
  354.     }
  355.     /**
  356.      * Set the value of organizationName
  357.      *
  358.      * @param ?string $organizationName
  359.      *
  360.      * @return self
  361.      */
  362.     public function setOrganizationName(?string $organizationName): self
  363.     {
  364.         $this->organizationName $organizationName;
  365.         return $this;
  366.     }
  367.     public function getBusinessAccountNumber(): ?string
  368.     {
  369.         return $this->businessAccountNumber;
  370.     }
  371.     public function setBusinessAccountNumber(?string $businessAccountNumber): self
  372.     {
  373.         $this->businessAccountNumber $businessAccountNumber;
  374.         return $this;
  375.     }
  376.     public function getCapacitySupport(): ?string
  377.     {
  378.         return $this->capacitySupport;
  379.     }
  380.     public function setCapacitySupport(?string $capacitySupport): self
  381.     {
  382.         $this->capacitySupport $capacitySupport;
  383.         return $this;
  384.     }
  385.     public function getInquiries(): ?string
  386.     {
  387.         return $this->inquiries;
  388.     }
  389.     public function setInquiries(?string $inquiries): self
  390.     {
  391.         $this->inquiries $inquiries;
  392.         return $this;
  393.     }
  394.     public function getCreatedAt(): ?\DateTimeImmutable
  395.     {
  396.         return $this->createdAt;
  397.     }
  398.     public function setCreatedAt(\DateTimeImmutable $createdAt): self
  399.     {
  400.         $this->createdAt $createdAt;
  401.         return $this;
  402.     }
  403. }