src/Entity/Cp/ImportDataTemp.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Cp;
  3. use App\Repository\Cp\ImportDataTempRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Table(name="import_data_temp")
  7.  * @ORM\Entity(repositoryClass=ImportDataTempRepository::class)
  8.  */
  9. class ImportDataTemp
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(name="cena_netto", type="float", nullable=true)
  19.      */
  20.     private $cenaNetto;
  21.     /**
  22.      * @ORM\Column(name="cena_brutto", type="float", nullable=true)
  23.      */
  24.     private $cenaBrutto;
  25.     /**
  26.      * @ORM\Column(name="ord_tran", type="string", length=255, nullable=true)
  27.      */
  28.     private $ordTran;
  29.     /**
  30.      * @ORM\Column(type="string", length=255, nullable=true)
  31.      */
  32.     private $imie;
  33.     /**
  34.      * @ORM\Column(type="string", length=255, nullable=true)
  35.      */
  36.     private $nazwisko;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getCenaNetto(): ?float
  42.     {
  43.         return $this->cenaNetto;
  44.     }
  45.     public function setCenaNetto(?float $cenaNetto): self
  46.     {
  47.         $this->cenaNetto $cenaNetto;
  48.         return $this;
  49.     }
  50.     public function getCenaBrutto(): ?float
  51.     {
  52.         return $this->cenaBrutto;
  53.     }
  54.     public function setCenaBrutto(?float $cenaBrutto): self
  55.     {
  56.         $this->cenaBrutto $cenaBrutto;
  57.         return $this;
  58.     }
  59.     public function getOrdTran(): ?string
  60.     {
  61.         return $this->ordTran;
  62.     }
  63.     public function setOrdTran(?string $ordTran): self
  64.     {
  65.         $this->ordTran $ordTran;
  66.         return $this;
  67.     }
  68.     public function getImie(): ?string
  69.     {
  70.         return $this->imie;
  71.     }
  72.     public function setImie(?string $imie): self
  73.     {
  74.         $this->imie $imie;
  75.         return $this;
  76.     }
  77.     public function getNazwisko(): ?string
  78.     {
  79.         return $this->nazwisko;
  80.     }
  81.     public function setNazwisko(?string $nazwisko): self
  82.     {
  83.         $this->nazwisko $nazwisko;
  84.         return $this;
  85.     }
  86. }