<?phpnamespace App\Entity;use App\Repository\InvoiceAutomationExpandRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=InvoiceAutomationExpandRepository::class) */class InvoiceAutomationExpand{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\ManyToOne(targetEntity=Company::class, inversedBy="invoiceAutomationExpands") * @ORM\JoinColumn(nullable=false) */ private $company; /** * @ORM\ManyToOne(targetEntity=User::class, inversedBy="invoiceAutomationExpands") * @ORM\JoinColumn(nullable=false) */ private $user; /** * @ORM\Column(type="float", nullable=true) */ private $expand1; /** * @ORM\Column(type="float", nullable=true) */ private $expand2; /** * @ORM\Column(type="float", nullable=true) */ private $expand3; /** * @ORM\Column(type="float", nullable=true) */ private $expand1Eu; /** * @ORM\Column(type="float", nullable=true) */ private $expand2Eu; /** * @ORM\Column(type="float", nullable=true) */ private $expand3Eu; public function getId(): ?int { return $this->id; } public function getCompany(): ?Company { return $this->company; } public function setCompany(?Company $company): self { $this->company = $company; return $this; } public function getUser(): ?User { return $this->user; } public function setUser(?User $user): self { $this->user = $user; return $this; } public function getExpand1(): ?float { return $this->expand1; } public function setExpand1(?float $expand1): self { $this->expand1 = $expand1; return $this; } public function getExpand2(): ?float { return $this->expand2; } public function setExpand2(?float $expand2): self { $this->expand2 = $expand2; return $this; } public function getExpand3(): ?float { return $this->expand3; } public function setExpand3(?float $expand3): self { $this->expand3 = $expand3; return $this; } public function getExpand1Eu(): ?float { return $this->expand1Eu; } public function setExpand1Eu(?float $expand1Eu): self { $this->expand1Eu = $expand1Eu; return $this; } public function getExpand2Eu(): ?float { return $this->expand2Eu; } public function setExpand2Eu(?float $expand2Eu): self { $this->expand2Eu = $expand2Eu; return $this; } public function getExpand3Eu(): ?float { return $this->expand3Eu; } public function setExpand3Eu(?float $expand3Eu): self { $this->expand3Eu = $expand3Eu; return $this; }}