src/Entity/BankReturn.php line 11

Open in your IDE?
  1. <?php
  2.     namespace App\Entity;
  3.     use App\Repository\BankReturnRepository;
  4.     use Doctrine\ORM\Mapping as ORM;
  5.     /**
  6.      * @ORM\Entity(repositoryClass=BankReturnRepository::class)
  7.      */
  8.     class BankReturn
  9.     {
  10.         /**
  11.          * @ORM\Id
  12.          * @ORM\GeneratedValue
  13.          * @ORM\Column(type="integer")
  14.          */
  15.         private $id;
  16.         /**
  17.          * @ORM\Column(type="string", length=50, nullable=true)
  18.          */
  19.         private $tpe;
  20.         /**
  21.          * @ORM\Column(type="string", length=50, nullable=true)
  22.          */
  23.         private $date;
  24.         /**
  25.          * @TODO Pourquoi un string et non un nombre (integer/decimal)
  26.          * @ORM\Column(type="string", length=50, nullable=true)
  27.          */
  28.         private $montant;
  29.         /**
  30.          * @ORM\Column(type="string", length=50, nullable=true)
  31.          */
  32.         private $reference;
  33.         /**
  34.          * @ORM\Column(type="string", length=255, nullable=true)
  35.          */
  36.         private $motifrefus;
  37.         /**
  38.          * @ORM\Column(type="string", length=120, nullable=true)
  39.          */
  40.         private $mac;
  41.         /**
  42.          * @ORM\Column(type="string", length=120, nullable=true)
  43.          */
  44.         private $macCalculated;
  45.         /**
  46.          * @ORM\Column(type="string", length=50, nullable=true)
  47.          */
  48.         private $coderetour;
  49.         /**
  50.          * @ORM\Column(type="string", length=50, nullable=true)
  51.          */
  52.         private $cvx;
  53.         /**
  54.          * @ORM\Column(type="string", length=50, nullable=true)
  55.          */
  56.         private $vld;
  57.         /**
  58.          * @ORM\Column(type="string", length=50, nullable=true)
  59.          */
  60.         private $brand;
  61.         /**
  62.          * @ORM\Column(type="string", length=50, nullable=true)
  63.          */
  64.         private $status3dsv;
  65.         /**
  66.          * @ORM\Column(type="string", length=50, nullable=true)
  67.          */
  68.         private $numauto;
  69.         /**
  70.          * @ORM\Column(type="string", length=50, nullable=true)
  71.          */
  72.         private $originecb;
  73.         /**
  74.          * @ORM\Column(type="string", length=50, nullable=true)
  75.          */
  76.         private $bincb;
  77.         /**
  78.          * @ORM\Column(type="string", length=50, nullable=true)
  79.          */
  80.         private $hpancb;
  81.         /**
  82.          * @ORM\Column(type="string", length=50, nullable=true)
  83.          */
  84.         private $ipclient;
  85.         /**
  86.          * @ORM\Column(type="string", length=50, nullable=true)
  87.          */
  88.         private $originetr;
  89.         /**
  90.          * @ORM\Column(type="string", length=50, nullable=true)
  91.          */
  92.         private $veres;
  93.         /**
  94.          * @ORM\Column(type="string", length=50, nullable=true)
  95.          */
  96.         private $pares;
  97.         public function getId(): ?int
  98.         {
  99.             return $this->id;
  100.         }
  101.         public function getTpe(): ?string
  102.         {
  103.             return $this->tpe;
  104.         }
  105.         public function setTpe( ?string $tpe ): self
  106.         {
  107.             $this->tpe $tpe;
  108.             return $this;
  109.         }
  110.         public function getDate(): ?string
  111.         {
  112.             return $this->date;
  113.         }
  114.         public function setDate( ?string $date ): self
  115.         {
  116.             $this->date $date;
  117.             return $this;
  118.         }
  119.         public function getMontant(): ?string
  120.         {
  121.             return $this->montant;
  122.         }
  123.         public function setMontant( ?string $montant ): self
  124.         {
  125.             $this->montant $montant;
  126.             return $this;
  127.         }
  128.         public function getReference(): ?string
  129.         {
  130.             return $this->reference;
  131.         }
  132.         public function setReference( ?string $reference ): self
  133.         {
  134.             $this->reference $reference;
  135.             return $this;
  136.         }
  137.         public function getMotifrefus(): ?string
  138.         {
  139.             return $this->motifrefus;
  140.         }
  141.         public function setMotifrefus( ?string $motifrefus ): self
  142.         {
  143.             $this->motifrefus $motifrefus;
  144.             return $this;
  145.         }
  146.         public function getMac(): ?string
  147.         {
  148.             return $this->mac;
  149.         }
  150.         public function setMac( ?string $mac ): self
  151.         {
  152.             $this->mac $mac;
  153.             return $this;
  154.         }
  155.         public function getMacCalculated(): ?string
  156.         {
  157.             return $this->macCalculated;
  158.         }
  159.         public function setMacCalculated( ?string $macCalculated ): self
  160.         {
  161.             $this->macCalculated $macCalculated;
  162.             return $this;
  163.         }
  164.         public function getCoderetour(): ?string
  165.         {
  166.             return $this->coderetour;
  167.         }
  168.         public function setCoderetour( ?string $coderetour ): self
  169.         {
  170.             $this->coderetour $coderetour;
  171.             return $this;
  172.         }
  173.         public function getCvx(): ?string
  174.         {
  175.             return $this->cvx;
  176.         }
  177.         public function setCvx( ?string $cvx ): self
  178.         {
  179.             $this->cvx $cvx;
  180.             return $this;
  181.         }
  182.         public function getVld(): ?string
  183.         {
  184.             return $this->vld;
  185.         }
  186.         public function setVld( ?string $vld ): self
  187.         {
  188.             $this->vld $vld;
  189.             return $this;
  190.         }
  191.         public function getBrand(): ?string
  192.         {
  193.             return $this->brand;
  194.         }
  195.         public function setBrand( ?string $brand ): self
  196.         {
  197.             $this->brand $brand;
  198.             return $this;
  199.         }
  200.         public function getStatus3dsv(): ?string
  201.         {
  202.             return $this->status3dsv;
  203.         }
  204.         public function setStatus3dsv( ?string $status3dsv ): self
  205.         {
  206.             $this->status3dsv $status3dsv;
  207.             return $this;
  208.         }
  209.         public function getNumauto(): ?string
  210.         {
  211.             return $this->numauto;
  212.         }
  213.         public function setNumauto( ?string $numauto ): self
  214.         {
  215.             $this->numauto $numauto;
  216.             return $this;
  217.         }
  218.         public function getOriginecb(): ?string
  219.         {
  220.             return $this->originecb;
  221.         }
  222.         public function setOriginecb( ?string $originecb ): self
  223.         {
  224.             $this->originecb $originecb;
  225.             return $this;
  226.         }
  227.         public function getBincb(): ?string
  228.         {
  229.             return $this->bincb;
  230.         }
  231.         public function setBincb( ?string $bincb ): self
  232.         {
  233.             $this->bincb $bincb;
  234.             return $this;
  235.         }
  236.         public function getHpancb(): ?string
  237.         {
  238.             return $this->hpancb;
  239.         }
  240.         public function setHpancb( ?string $hpancb ): self
  241.         {
  242.             $this->hpancb $hpancb;
  243.             return $this;
  244.         }
  245.         public function getIpclient(): ?string
  246.         {
  247.             return $this->ipclient;
  248.         }
  249.         public function setIpclient( ?string $ipclient ): self
  250.         {
  251.             $this->ipclient $ipclient;
  252.             return $this;
  253.         }
  254.         public function getOriginetr(): ?string
  255.         {
  256.             return $this->originetr;
  257.         }
  258.         public function setOriginetr( ?string $originetr ): self
  259.         {
  260.             $this->originetr $originetr;
  261.             return $this;
  262.         }
  263.         public function getVeres(): ?string
  264.         {
  265.             return $this->veres;
  266.         }
  267.         public function setVeres( ?string $veres ): self
  268.         {
  269.             $this->veres $veres;
  270.             return $this;
  271.         }
  272.         public function getPares(): ?string
  273.         {
  274.             return $this->pares;
  275.         }
  276.         public function setPares( ?string $pares ): self
  277.         {
  278.             $this->pares $pares;
  279.             return $this;
  280.         }
  281.     }