src/Entity/AdditionalCompanyInformation.php line 9
<?phpnamespace App\Entity;use App\Repository\AdditionalCompanyInformationRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: AdditionalCompanyInformationRepository::class)]class AdditionalCompanyInformation{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\ManyToOne(targetEntity: User::class, inversedBy: 'AdditionalCompanyInformation', fetch: 'EAGER')]private $user;#[ORM\Column(name: 'generalCondition', type: 'boolean', nullable: true)]private ?bool $generalCondition;#[ORM\Column(name: 'storeSize', type: 'string', nullable: true)]private ?string $storeSize;#[ORM\Column(name: 'idClientMercator', type: 'string', nullable: true)]private ?string $idClientMercator;#[ORM\Column(name: 'customerCategoryMercator', type: 'string', nullable: true)]private ?string $customerCategoryMercator;#[ORM\Column(name: 'mercatorBE', type: 'boolean', nullable: true)]private ?bool $mercatorBE;#[ORM\Column(name: 'mercatorLU', type: 'boolean', nullable: true)]private ?bool $mercatorLU;#[ORM\Column(name: 'salesAreaForFoodSupplements', type: 'string', nullable: true)]private ?string $salesAreaForFoodSupplements;#[ORM\Column(name: 'companyAddress', type: 'string', nullable: true)]private ?string $companyAddress;#[ORM\Column(name: 'companyTypePro', type: 'string', nullable: true)]private ?string $companyTypePro;#[ORM\Column(name: 'ibanrib', type: 'string', nullable: true)]private ?string $ibanrib;#[ORM\Column(name: 'companyPostal', type: 'string', nullable: true)]private ?string $companyPostal;#[ORM\Column(name: 'townAddressCompany', type: 'string', nullable: true)]private ?string $townAddressCompany;#[ORM\Column(name: 'companyCountry', type: 'string', nullable: true)]private ?string $companyCountry;#[ORM\Column(name: 'ribPdf', type: 'string', nullable: true)]private ?string $ribPdf;#[ORM\Column(name: 'companyRibValidate', type: 'boolean', nullable: true)]private ?bool $companyRibValidate;#[ORM\Column(name: 'legalForm', type: 'string', nullable: true)]private ?string $legalForm;#[ORM\Column(name: 'sirenNumber', type: 'string', nullable: true)]private ?string $sirenNumber;#[ORM\Column(name: 'siretNumber', type: 'string', nullable: true)]private ?string $siretNumber;#[ORM\Column(name: 'tva', type: 'string', nullable: true)]private ?string $tva;#[ORM\Column(name: 'rcs', type: 'string', nullable: true)]private ?string $rcs;#[ORM\Column(name: 'companyWebsite', type: 'text', nullable: true)]private ?string $companyWebsite;#[ORM\Column(name: 'companyName', type: 'string', nullable: true)]private ?string $companyName;#[ORM\Column(name: 'accountantGender', type: 'string', nullable: true)]private ?string $accountantGender;#[ORM\Column(name: 'accountantFirstName', type: 'string', nullable: true)]private ?string $accountantFirstName;#[ORM\Column(name: 'accountantLastName', type: 'string', nullable: true)]private ?string $accountantLastName;#[ORM\Column(name: 'accountantPhone', type: 'string', nullable: true)]private ?string $accountantPhone;#[ORM\Column(name: 'accountantMobilePhone', type: 'string', nullable: true)]private ?string $accountantMobilePhone;#[ORM\Column(name: 'accountantSupplementsPurchaseDecisionMaker', type: 'boolean', nullable: true)]private ?bool $accountantSupplementsPurchaseDecisionMaker;#[ORM\Column(name: 'accountantEmail', type: 'string', nullable: true)]private ?string $accountantEmail;#[ORM\Column(name: 'therapistGender', type: 'string', nullable: true)]private ?string $therapistGender;#[ORM\Column(name: 'therapistFirstName', type: 'string', nullable: true)]private ?string $therapistFirstName;#[ORM\Column(name: 'therapistLastName', type: 'string', nullable: true)]private ?string $therapistLastName;#[ORM\Column(name: 'therapistPhone', type: 'string', nullable: true)]private ?string $therapistPhone;#[ORM\Column(name: 'therapistMobilePhone', type: 'string', nullable: true)]private ?string $therapistMobilePhone;#[ORM\Column(name: 'therapistEmail', type: 'string', nullable: true)]private ?string $therapistEmail;#[ORM\Column(name: 'therapistSupplementsPurchaseDecisionMaker', type: 'boolean', nullable: true)]private ?bool $therapistSupplementsPurchaseDecisionMaker;#[ORM\Column(name: 'ceoGender', type: 'string', nullable: true)]private ?string $ceoGender;#[ORM\Column(name: 'ceoFirstName', type: 'string', nullable: true)]private ?string $ceoFirstName;#[ORM\Column(name: 'ceoLastName', type: 'string', nullable: true)]private ?string $ceoLastName;#[ORM\Column(name: 'ceoPhone', type: 'string', nullable: true)]private ?string $ceoPhone;#[ORM\Column(name: 'ceoMobilePhone', type: 'string', nullable: true)]private ?string $ceoMobilePhone;#[ORM\Column(name: 'ceoEmail', type: 'string', nullable: true)]private ?string $ceoEmail;#[ORM\Column(name: 'ceoSupplementsPurchaseDecisionMaker', type: 'boolean', nullable: true)]private ?bool $ceoSupplementsPurchaseDecisionMaker;/*** @return bool|null*/public function getGeneralCondition(): ?bool{return $this->generalCondition;}/*** @param bool|null $generalCondition*/public function setGeneralCondition(?bool $generalCondition): void{$this->generalCondition = $generalCondition;}/*** @return bool|null*/public function getMercatorBE(): ?bool{return $this->mercatorBE;}/*** @param bool|null $mercatorBE*/public function setMercatorBE(?bool $mercatorBE): void{$this->mercatorBE = $mercatorBE;}/*** @return bool|null*/public function getMercatorLU(): ?bool{return $this->mercatorLU;}/*** @param bool|null $mercatorLU*/public function setMercatorLU(?bool $mercatorLU): void{$this->mercatorLU = $mercatorLU;}/*** @return string|null*/public function getCustomerCategoryMercator(): ?string{return $this->customerCategoryMercator;}/*** @param string|null $customerCategoryMercator*/public function setCustomerCategoryMercator(?string $customerCategoryMercator): void{$this->customerCategoryMercator = $customerCategoryMercator;}public function getId(): ?int{return $this->id;}/*** @return string|null*/public function getIdClientMercator(): ?string{return $this->idClientMercator;}/*** @param string|null $idClientMercator*/public function setIdClientMercator(?string $idClientMercator): void{$this->idClientMercator = $idClientMercator;}/*** @return string|null*/public function getCompanyTypePro(): ?string{return $this->companyTypePro;}/*** @param string|null $companyTypePro*/public function setCompanyTypePro(?string $companyTypePro): void{$this->companyTypePro = $companyTypePro;}/*** @return string|null*/public function getCeoGender(): ?string{return $this->ceoGender;}/*** @param string|null $ceoGender*/public function setCeoGender(?string $ceoGender): void{$this->ceoGender = $ceoGender;}/*** @return string|null*/public function getCeoFirstName(): ?string{return $this->ceoFirstName;}/*** @param string|null $ceoFirstName*/public function setCeoFirstName(?string $ceoFirstName): void{$this->ceoFirstName = $ceoFirstName;}/*** @return string|null*/public function getCeoLastName(): ?string{return $this->ceoLastName;}/*** @param string|null $ceoLastName*/public function setCeoLastName(?string $ceoLastName): void{$this->ceoLastName = $ceoLastName;}/*** @return string|null*/public function getCeoPhone(): ?string{return $this->ceoPhone;}/*** @param string|null $ceoPhone*/public function setCeoPhone(?string $ceoPhone): void{$this->ceoPhone = $ceoPhone;}/*** @return string|null*/public function getCeoMobilePhone(): ?string{return $this->ceoMobilePhone;}/*** @param string|null $ceoMobilePhone*/public function setCeoMobilePhone(?string $ceoMobilePhone): void{$this->ceoMobilePhone = $ceoMobilePhone;}/*** @return string|null*/public function getCeoEmail(): ?string{return $this->ceoEmail;}/*** @param string|null $ceoEmail*/public function setCeoEmail(?string $ceoEmail): void{$this->ceoEmail = $ceoEmail;}/*** @return bool|null*/public function getCeoSupplementsPurchaseDecisionMaker(): ?bool{return $this->ceoSupplementsPurchaseDecisionMaker;}/*** @param bool|null $ceoSupplementsPurchaseDecisionMaker*/public function setCeoSupplementsPurchaseDecisionMaker(?bool $ceoSupplementsPurchaseDecisionMaker): void{$this->ceoSupplementsPurchaseDecisionMaker = $ceoSupplementsPurchaseDecisionMaker;}/*** @return string|null*/public function getIbanrib(): ?string{return $this->ibanrib;}/*** @param string|null $ibanrib*/public function setIbanrib(?string $ibanrib): void{$this->ibanrib = $ibanrib;}/*** @return string|null*/public function getRibPdf(): ?string{return $this->ribPdf;}/*** @param string|null $ribPdf*/public function setRibPdf(?string $ribPdf): void{$this->ribPdf = $ribPdf;}/*** @return string|null*/public function getAccountantGender(): ?string{return $this->accountantGender;}/*** @param string|null $accountantGender*/public function setAccountantGender(?string $accountantGender): void{$this->accountantGender = $accountantGender;}/*** @return string|null*/public function getTherapistGender(): ?string{return $this->therapistGender;}/*** @param string|null $therapistGender*/public function setTherapistGender(?string $therapistGender): void{$this->therapistGender = $therapistGender;}/*** @return bool|null*/public function getManagerSupplementsPurchaseDecisionMaker(): ?bool{return $this->managerSupplementsPurchaseDecisionMaker;}/*** @param bool|null $managerSupplementsPurchaseDecisionMaker*/public function setManagerSupplementsPurchaseDecisionMaker(?bool $managerSupplementsPurchaseDecisionMaker): void{$this->managerSupplementsPurchaseDecisionMaker = $managerSupplementsPurchaseDecisionMaker;}/*** @return bool|null*/public function getAccountantSupplementsPurchaseDecisionMaker(): ?bool{return $this->accountantSupplementsPurchaseDecisionMaker;}/*** @param bool|null $accountantSupplementsPurchaseDecisionMaker*/public function setAccountantSupplementsPurchaseDecisionMaker(?bool $accountantSupplementsPurchaseDecisionMaker): void{$this->accountantSupplementsPurchaseDecisionMaker = $accountantSupplementsPurchaseDecisionMaker;}/*** @return bool|null*/public function getTherapistSupplementsPurchaseDecisionMaker(): ?bool{return $this->therapistSupplementsPurchaseDecisionMaker;}/*** @param bool|null $therapistSupplementsPurchaseDecisionMaker*/public function setTherapistSupplementsPurchaseDecisionMaker(?bool $therapistSupplementsPurchaseDecisionMaker): void{$this->therapistSupplementsPurchaseDecisionMaker = $therapistSupplementsPurchaseDecisionMaker;}/*** @return bool|null*/public function getCompanyRibValidate(): ?bool{return $this->companyRibValidate;}/*** @param bool|null $companyRibValidate*/public function setCompanyRibValidate(?bool $companyRibValidate): void{$this->companyRibValidate = $companyRibValidate;}/*** @return string|null*/public function getRcs(): ?string{return $this->rcs;}/*** @param string|null $rcs*/public function setRcs(?string $rcs): void{$this->rcs = $rcs;}/*** @return string|null*/public function getTva(): ?string{return $this->tva;}/*** @param string|null $tva*/public function setTva(?string $tva): void{$this->tva = $tva;}/*** @return string|null*/public function getCompanyAddress(): ?string{return $this->companyAddress;}/*** @param string|null $companyAddress*/public function setCompanyAddress(?string $companyAddress): void{$this->companyAddress = $companyAddress;}/*** @return string|null*/public function getCompanyPostal(): ?string{return $this->companyPostal;}/*** @param string|null $companyPostal*/public function setCompanyPostal(?string $companyPostal): void{$this->companyPostal = $companyPostal;}/*** @return string|null*/public function getTownAddressCompany(): ?string{return $this->townAddressCompany;}/*** @param string|null $townAddressCompany*/public function setTownAddressCompany(?string $townAddressCompany): void{$this->townAddressCompany = $townAddressCompany;}/*** @return string|null*/public function getCompanyCountry(): ?string{return $this->companyCountry;}/*** @param string|null $companyCountry*/public function setCompanyCountry(?string $companyCountry): void{$this->companyCountry = $companyCountry;}/*** @return string|null*/public function getLegalForm(): ?string{return $this->legalForm;}/*** @param string|null $legalForm*/public function setLegalForm(?string $legalForm): void{$this->legalForm = $legalForm;}/*** @return string|null*/public function getSirenNumber(): ?string{return $this->sirenNumber;}/*** @param string|null $sirenNumber*/public function setSirenNumber(?string $sirenNumber): void{$this->sirenNumber = $sirenNumber;}/*** @return string|null*/public function getSiretNumber(): ?string{return $this->siretNumber;}/*** @param string|null $siretNumber*/public function setSiretNumber(?string $siretNumber): void{$this->siretNumber = $siretNumber;}/*** @return string|null*/public function getCompanyWebsite(): ?string{return $this->companyWebsite;}/*** @param string|null $companyWebsite*/public function setCompanyWebsite(?string $companyWebsite): void{$this->companyWebsite = $companyWebsite;}/*** @return string|null*/public function getCompanyName(): ?string{return $this->companyName;}/*** @param string|null $companyName*/public function setCompanyName(?string $companyName): void{$this->companyName = $companyName;}/*** @return mixed*/public function getUser(){return $this->user;}/*** @param mixed $user*/public function setUser($user): void{$this->user = $user;}/*** @return string|null*/public function getStoreSize(): ?string{return $this->storeSize;}/*** @param string|null $storeSize*/public function setStoreSize(?string $storeSize): void{$this->storeSize = $storeSize;}/*** @return string|null*/public function getSalesAreaForFoodSupplements(): ?string{return $this->salesAreaForFoodSupplements;}/*** @param string|null $salesAreaForFoodSupplements*/public function setSalesAreaForFoodSupplements(?string $salesAreaForFoodSupplements): void{$this->salesAreaForFoodSupplements = $salesAreaForFoodSupplements;}/*** @return string|null*/public function getAccountantFirstName(): ?string{return $this->accountantFirstName;}/*** @param string|null $accountantFirstName*/public function setAccountantFirstName(?string $accountantFirstName): void{$this->accountantFirstName = $accountantFirstName;}/*** @return string|null*/public function getAccountantLastName(): ?string{return $this->accountantLastName;}/*** @param string|null $accountantLastName*/public function setAccountantLastName(?string $accountantLastName): void{$this->accountantLastName = $accountantLastName;}/*** @return string|null*/public function getAccountantPhone(): ?string{return $this->accountantPhone;}/*** @param string|null $accountantPhone*/public function setAccountantPhone(?string $accountantPhone): void{$this->accountantPhone = $accountantPhone;}/*** @return string|null*/public function getAccountantMobilePhone(): ?string{return $this->accountantMobilePhone;}/*** @param string|null $accountantMobilePhone*/public function setAccountantMobilePhone(?string $accountantMobilePhone): void{$this->accountantMobilePhone = $accountantMobilePhone;}/*** @return string|null*/public function getAccountantEmail(): ?string{return $this->accountantEmail;}/*** @param string|null $accountantEmail*/public function setAccountantEmail(?string $accountantEmail): void{$this->accountantEmail = $accountantEmail;}/*** @return string|null*/public function getTherapistFirstName(): ?string{return $this->therapistFirstName;}/*** @param string|null $therapistFirstName*/public function setTherapistFirstName(?string $therapistFirstName): void{$this->therapistFirstName = $therapistFirstName;}/*** @return string|null*/public function getTherapistLastName(): ?string{return $this->therapistLastName;}/*** @param string|null $therapistLastName*/public function setTherapistLastName(?string $therapistLastName): void{$this->therapistLastName = $therapistLastName;}/*** @return string|null*/public function getTherapistPhone(): ?string{return $this->therapistPhone;}/*** @param string|null $therapistPhone*/public function setTherapistPhone(?string $therapistPhone): void{$this->therapistPhone = $therapistPhone;}/*** @return string|null*/public function getTherapistMobilePhone(): ?string{return $this->therapistMobilePhone;}/*** @param string|null $therapistMobilePhone*/public function setTherapistMobilePhone(?string $therapistMobilePhone): void{$this->therapistMobilePhone = $therapistMobilePhone;}/*** @return string|null*/public function getTherapistEmail(): ?string{return $this->therapistEmail;}/*** @param string|null $therapistEmail*/public function setTherapistEmail(?string $therapistEmail): void{$this->therapistEmail = $therapistEmail;}public function __toString(){return (string)$this->tva;}}