src/Entity/IctusDevise.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\IctusDeviseRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=IctusDeviseRepository::class)
  7.  */
  8. class IctusDevise
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $designation;
  20.     /**
  21.      * @ORM\Column(type="float")
  22.      */
  23.     private $cour_echange;
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getDesignation(): ?string
  29.     {
  30.         return $this->designation;
  31.     }
  32.     public function setDesignation(string $designation): self
  33.     {
  34.         $this->designation $designation;
  35.         return $this;
  36.     }
  37.     public function getCourEchange(): ?float
  38.     {
  39.         return $this->cour_echange;
  40.     }
  41.     public function setCourEchange(float $cour_echange): self
  42.     {
  43.         $this->cour_echange $cour_echange;
  44.         return $this;
  45.     }
  46. }