src/Entity/SubcontractorType.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Mapping\Annotation as Gedmo;
  5. use Gedmo\Translatable\Translatable;
  6. /**
  7.  * DocumentType
  8.  *
  9.  * @ORM\Table(name="subcontractor_type", uniqueConstraints={@ORM\UniqueConstraint(name="subcontractor_type_id_uindex", columns={"id"})})
  10.  * @ORM\Entity
  11.  */
  12. class SubcontractorType
  13. {
  14.     /**
  15.      * @var integer
  16.      *
  17.      * @ORM\Column(name="id", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="IDENTITY")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @var string
  24.      *
  25.      * @ORM\Column(name="code", type="string", length=255, nullable=true)
  26.      */
  27.     private $code;
  28.     /**
  29.      * @var string
  30.      *
  31.      * @ORM\Column(name="libelle", type="string", length=255, nullable=true)
  32.      * @Gedmo\Translatable
  33.      */
  34.     private $libelle;
  35.     /**
  36.      * @return int
  37.      */
  38.     public function getId(): int
  39.     {
  40.         return $this->id;
  41.     }
  42.     /**
  43.      * @param int $id
  44.      */
  45.     public function setId(int $id): void
  46.     {
  47.         $this->id $id;
  48.     }
  49.     /**
  50.      * @return string
  51.      */
  52.     public function getCode(): string
  53.     {
  54.         return $this->code;
  55.     }
  56.     /**
  57.      * @param string $code
  58.      */
  59.     public function setCode(string $code): void
  60.     {
  61.         $this->code $code;
  62.     }
  63.     /**
  64.      * @return string
  65.      */
  66.     public function getLibelle(): string
  67.     {
  68.         return $this->libelle;
  69.     }
  70.     /**
  71.      * @param string $libelle
  72.      */
  73.     public function setLibelle(string $libelle): void
  74.     {
  75.         $this->libelle $libelle;
  76.     }
  77.     public function __toString()
  78.     {
  79.         // TODO: Implement __toString() method.
  80.         return $this->getLibelle();
  81.     }
  82. }