src/Entity/Comptebancaire.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  *  comptebancaire
  6.  *
  7.  * @ORM\Table(name="comptebancaire")
  8.  * @ORM\Entity(repositoryClass="App\Repository\ComptebancaireRepository")
  9.  */
  10. class Comptebancaire
  11. {
  12.     /**
  13.      * @ORM\Id()
  14.      * @ORM\GeneratedValue()
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255, nullable=true)
  20.      */
  21.     private $codebnaque;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $codeguichet;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $numcompt;
  30.     /**
  31.      * @ORM\Column(type="string", length=255, nullable=true)
  32.      */
  33.     private $clerib;
  34.     /**
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      */
  37.     private $iban;
  38.     /**
  39.      * @ORM\Column(type="string", length=255, nullable=true)
  40.      */
  41.     private $codebic;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      */
  45.     private $nom;
  46.     /**
  47.      * @ORM\Column(type="string", length=255, nullable=true)
  48.      */
  49.     private $domicilation;
  50.     public function getId(): ?int
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getCodebnaque(): ?string
  55.     {
  56.         return $this->codebnaque;
  57.     }
  58.     public function setCodebnaque(?string $codebnaque): self
  59.     {
  60.         $this->codebnaque $codebnaque;
  61.         return $this;
  62.     }
  63.     public function getCodeguichet(): ?string
  64.     {
  65.         return $this->codeguichet;
  66.     }
  67.     public function setCodeguichet(?string $codeguichet): self
  68.     {
  69.         $this->codeguichet $codeguichet;
  70.         return $this;
  71.     }
  72.     public function getNumcompt(): ?string
  73.     {
  74.         return $this->numcompt;
  75.     }
  76.     public function setNumcompt(?string $numcompt): self
  77.     {
  78.         $this->numcompt $numcompt;
  79.         return $this;
  80.     }
  81.     public function getClerib(): ?string
  82.     {
  83.         return $this->clerib;
  84.     }
  85.     public function setClerib(?string $clerib): self
  86.     {
  87.         $this->clerib $clerib;
  88.         return $this;
  89.     }
  90.     public function getIban(): ?string
  91.     {
  92.         return $this->iban;
  93.     }
  94.     public function setIban(?string $iban): self
  95.     {
  96.         $this->iban $iban;
  97.         return $this;
  98.     }
  99.     public function getCodebic(): ?string
  100.     {
  101.         return $this->codebic;
  102.     }
  103.     public function setCodebic(?string $codebic): self
  104.     {
  105.         $this->codebic $codebic;
  106.         return $this;
  107.     }
  108.     public function getNom(): ?string
  109.     {
  110.         return $this->nom;
  111.     }
  112.     public function setNom(?string $nom): self
  113.     {
  114.         $this->nom $nom;
  115.         return $this;
  116.     }
  117.     public function getDomicilation(): ?string
  118.     {
  119.         return $this->domicilation;
  120.     }
  121.     public function setDomicilation(?string $domicilation): self
  122.     {
  123.         $this->domicilation $domicilation;
  124.         return $this;
  125.     }
  126.     
  127. }