src/Entity/CRM/ImplementerOrderData.php line 10
<?phpnamespace App\Entity\CRM;use App\Entity\CRM\Order;use App\Repository\ImplementerOrderDataRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ImplementerOrderDataRepository::class)]class ImplementerOrderData{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\OneToOne(inversedBy: 'implementerOrderData', cascade: ['persist', 'remove'])]#[ORM\JoinColumn(nullable: false)]private ?Order $orderId = null;#[ORM\Column(length: 255, nullable: true)]private ?string $email = null;#[ORM\Column(length: 255, nullable: true)]private ?string $company = null;#[ORM\Column(length: 255, nullable: true)]private ?string $name = null;#[ORM\Column(length: 255, nullable: true)]private ?string $street = null;#[ORM\Column(length: 255, nullable: true)]private ?string $city = null;#[ORM\Column(length: 255, nullable: true)]private ?string $zipcode = null;#[ORM\Column(length: 255, nullable: true)]private ?string $phone = null;#[ORM\Column(length: 255, nullable: true)]private ?string $companyNumber = null;#[ORM\Column(length: 255, nullable: true)]private ?string $inspectorEmail = null;#[ORM\Column(length: 255, nullable: true)]private ?string $inspector = null;public function getId(): ?int{return $this->id;}public function getOrderId(): ?Order{return $this->orderId;}public function setOrderId(Order $orderId): static{$this->orderId = $orderId;return $this;}public function getEmail(): ?string{return $this->email;}public function setEmail(?string $email): static{$this->email = $email;return $this;}public function getCompany(): ?string{return $this->company;}public function setCompany(?string $company): static{$this->company = $company;return $this;}public function getName(): ?string{return $this->name;}public function setName(?string $name): static{$this->name = $name;return $this;}public function getStreet(): ?string{return $this->street;}public function setStreet(?string $street): static{$this->street = $street;return $this;}public function getCity(): ?string{return $this->city;}public function setCity(?string $city): static{$this->city = $city;return $this;}public function getZipcode(): ?string{return $this->zipcode;}public function setZipcode(?string $zipcode): static{$this->zipcode = $zipcode;return $this;}public function getPhone(): ?string{return $this->phone;}public function setPhone(?string $phone): static{$this->phone = $phone;return $this;}public function getCompanyNumber(): ?string{return $this->companyNumber;}public function setCompanyNumber(?string $companyNumber): static{$this->companyNumber = $companyNumber;return $this;}public function getInspectorEmail(): ?string{return $this->inspectorEmail;}public function setInspectorEmail(?string $inspectorEmail): static{$this->inspectorEmail = $inspectorEmail;return $this;}public function getInspector(): ?string{return $this->inspector;}public function setInspector(?string $inspector): static{$this->inspector = $inspector;return $this;}}