src/Entity/InvoiceAutomationExpand.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\InvoiceAutomationExpandRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=InvoiceAutomationExpandRepository::class)
  7.  */
  8. class InvoiceAutomationExpand
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Company::class, inversedBy="invoiceAutomationExpands")
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $company;
  21.     /**
  22.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="invoiceAutomationExpands")
  23.      * @ORM\JoinColumn(nullable=false)
  24.      */
  25.     private $user;
  26.     /**
  27.      * @ORM\Column(type="float", nullable=true)
  28.      */
  29.     private $expand1;
  30.     /**
  31.      * @ORM\Column(type="float", nullable=true)
  32.      */
  33.     private $expand2;
  34.     /**
  35.      * @ORM\Column(type="float", nullable=true)
  36.      */
  37.     private $expand3;
  38.     /**
  39.      * @ORM\Column(type="float", nullable=true)
  40.      */
  41.     private $expand1Eu;
  42.     /**
  43.      * @ORM\Column(type="float", nullable=true)
  44.      */
  45.     private $expand2Eu;
  46.     /**
  47.      * @ORM\Column(type="float", nullable=true)
  48.      */
  49.     private $expand3Eu;
  50.     public function getId(): ?int
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getCompany(): ?Company
  55.     {
  56.         return $this->company;
  57.     }
  58.     public function setCompany(?Company $company): self
  59.     {
  60.         $this->company $company;
  61.         return $this;
  62.     }
  63.     public function getUser(): ?User
  64.     {
  65.         return $this->user;
  66.     }
  67.     public function setUser(?User $user): self
  68.     {
  69.         $this->user $user;
  70.         return $this;
  71.     }
  72.     public function getExpand1(): ?float
  73.     {
  74.         return $this->expand1;
  75.     }
  76.     public function setExpand1(?float $expand1): self
  77.     {
  78.         $this->expand1 $expand1;
  79.         return $this;
  80.     }
  81.     public function getExpand2(): ?float
  82.     {
  83.         return $this->expand2;
  84.     }
  85.     public function setExpand2(?float $expand2): self
  86.     {
  87.         $this->expand2 $expand2;
  88.         return $this;
  89.     }
  90.     public function getExpand3(): ?float
  91.     {
  92.         return $this->expand3;
  93.     }
  94.     public function setExpand3(?float $expand3): self
  95.     {
  96.         $this->expand3 $expand3;
  97.         return $this;
  98.     }
  99.     public function getExpand1Eu(): ?float
  100.     {
  101.         return $this->expand1Eu;
  102.     }
  103.     public function setExpand1Eu(?float $expand1Eu): self
  104.     {
  105.         $this->expand1Eu $expand1Eu;
  106.         return $this;
  107.     }
  108.     public function getExpand2Eu(): ?float
  109.     {
  110.         return $this->expand2Eu;
  111.     }
  112.     public function setExpand2Eu(?float $expand2Eu): self
  113.     {
  114.         $this->expand2Eu $expand2Eu;
  115.         return $this;
  116.     }
  117.     public function getExpand3Eu(): ?float
  118.     {
  119.         return $this->expand3Eu;
  120.     }
  121.     public function setExpand3Eu(?float $expand3Eu): self
  122.     {
  123.         $this->expand3Eu $expand3Eu;
  124.         return $this;
  125.     }
  126. }