<?php
namespace App\Entity\Cp;
use App\Repository\Cp\ImportDataTempRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="import_data_temp")
* @ORM\Entity(repositoryClass=ImportDataTempRepository::class)
*/
class ImportDataTemp
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(name="cena_netto", type="float", nullable=true)
*/
private $cenaNetto;
/**
* @ORM\Column(name="cena_brutto", type="float", nullable=true)
*/
private $cenaBrutto;
/**
* @ORM\Column(name="ord_tran", type="string", length=255, nullable=true)
*/
private $ordTran;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $imie;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $nazwisko;
public function getId(): ?int
{
return $this->id;
}
public function getCenaNetto(): ?float
{
return $this->cenaNetto;
}
public function setCenaNetto(?float $cenaNetto): self
{
$this->cenaNetto = $cenaNetto;
return $this;
}
public function getCenaBrutto(): ?float
{
return $this->cenaBrutto;
}
public function setCenaBrutto(?float $cenaBrutto): self
{
$this->cenaBrutto = $cenaBrutto;
return $this;
}
public function getOrdTran(): ?string
{
return $this->ordTran;
}
public function setOrdTran(?string $ordTran): self
{
$this->ordTran = $ordTran;
return $this;
}
public function getImie(): ?string
{
return $this->imie;
}
public function setImie(?string $imie): self
{
$this->imie = $imie;
return $this;
}
public function getNazwisko(): ?string
{
return $this->nazwisko;
}
public function setNazwisko(?string $nazwisko): self
{
$this->nazwisko = $nazwisko;
return $this;
}
}