<?php
namespace App\Entity;
use App\Repository\BankReturnRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=BankReturnRepository::class)
*/
class BankReturn
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $tpe;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $date;
/**
* @TODO Pourquoi un string et non un nombre (integer/decimal)
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $montant;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $reference;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $motifrefus;
/**
* @ORM\Column(type="string", length=120, nullable=true)
*/
private $mac;
/**
* @ORM\Column(type="string", length=120, nullable=true)
*/
private $macCalculated;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $coderetour;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $cvx;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $vld;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $brand;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $status3dsv;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $numauto;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $originecb;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $bincb;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $hpancb;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $ipclient;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $originetr;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $veres;
/**
* @ORM\Column(type="string", length=50, nullable=true)
*/
private $pares;
public function getId(): ?int
{
return $this->id;
}
public function getTpe(): ?string
{
return $this->tpe;
}
public function setTpe( ?string $tpe ): self
{
$this->tpe = $tpe;
return $this;
}
public function getDate(): ?string
{
return $this->date;
}
public function setDate( ?string $date ): self
{
$this->date = $date;
return $this;
}
public function getMontant(): ?string
{
return $this->montant;
}
public function setMontant( ?string $montant ): self
{
$this->montant = $montant;
return $this;
}
public function getReference(): ?string
{
return $this->reference;
}
public function setReference( ?string $reference ): self
{
$this->reference = $reference;
return $this;
}
public function getMotifrefus(): ?string
{
return $this->motifrefus;
}
public function setMotifrefus( ?string $motifrefus ): self
{
$this->motifrefus = $motifrefus;
return $this;
}
public function getMac(): ?string
{
return $this->mac;
}
public function setMac( ?string $mac ): self
{
$this->mac = $mac;
return $this;
}
public function getMacCalculated(): ?string
{
return $this->macCalculated;
}
public function setMacCalculated( ?string $macCalculated ): self
{
$this->macCalculated = $macCalculated;
return $this;
}
public function getCoderetour(): ?string
{
return $this->coderetour;
}
public function setCoderetour( ?string $coderetour ): self
{
$this->coderetour = $coderetour;
return $this;
}
public function getCvx(): ?string
{
return $this->cvx;
}
public function setCvx( ?string $cvx ): self
{
$this->cvx = $cvx;
return $this;
}
public function getVld(): ?string
{
return $this->vld;
}
public function setVld( ?string $vld ): self
{
$this->vld = $vld;
return $this;
}
public function getBrand(): ?string
{
return $this->brand;
}
public function setBrand( ?string $brand ): self
{
$this->brand = $brand;
return $this;
}
public function getStatus3dsv(): ?string
{
return $this->status3dsv;
}
public function setStatus3dsv( ?string $status3dsv ): self
{
$this->status3dsv = $status3dsv;
return $this;
}
public function getNumauto(): ?string
{
return $this->numauto;
}
public function setNumauto( ?string $numauto ): self
{
$this->numauto = $numauto;
return $this;
}
public function getOriginecb(): ?string
{
return $this->originecb;
}
public function setOriginecb( ?string $originecb ): self
{
$this->originecb = $originecb;
return $this;
}
public function getBincb(): ?string
{
return $this->bincb;
}
public function setBincb( ?string $bincb ): self
{
$this->bincb = $bincb;
return $this;
}
public function getHpancb(): ?string
{
return $this->hpancb;
}
public function setHpancb( ?string $hpancb ): self
{
$this->hpancb = $hpancb;
return $this;
}
public function getIpclient(): ?string
{
return $this->ipclient;
}
public function setIpclient( ?string $ipclient ): self
{
$this->ipclient = $ipclient;
return $this;
}
public function getOriginetr(): ?string
{
return $this->originetr;
}
public function setOriginetr( ?string $originetr ): self
{
$this->originetr = $originetr;
return $this;
}
public function getVeres(): ?string
{
return $this->veres;
}
public function setVeres( ?string $veres ): self
{
$this->veres = $veres;
return $this;
}
public function getPares(): ?string
{
return $this->pares;
}
public function setPares( ?string $pares ): self
{
$this->pares = $pares;
return $this;
}
}