src/Entity/Energy.php line 13

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. /**
  6.  * @ORM\Entity(repositoryClass="App\Repository\EnergyRepository")
  7.  *
  8.  * @ORM\Table(name="vehicle_energy")
  9.  */
  10. class Energy implements LabelInterface
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      *
  15.      * @ORM\Column(type="bigint")
  16.      *
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     protected $id;
  20.     /**
  21.      * @ORM\Column(type="string")
  22.      *
  23.      * @Gedmo\Translatable
  24.      */
  25.     protected $name;
  26.     /**
  27.      * Locale.
  28.      *
  29.      * @Gedmo\Locale
  30.      */
  31.     protected $locale;
  32.     public function __construct(
  33.         /**
  34.          * @ORM\Column(type="string")
  35.          */
  36.         protected $code
  37.     ) {
  38.     }
  39.     /**
  40.      * Get id.
  41.      *
  42.      * @return id
  43.      */
  44.     public function getId()
  45.     {
  46.         return $this->id;
  47.     }
  48.     /**
  49.      * Get Code.
  50.      *
  51.      * @return code
  52.      */
  53.     public function getCode()
  54.     {
  55.         return $this->code;
  56.     }
  57.     /**
  58.      * Set code.
  59.      *
  60.      * @param code the value to set
  61.      */
  62.     public function setCode($code): void
  63.     {
  64.         $this->code $code;
  65.     }
  66.     /**
  67.      * Get name.
  68.      *
  69.      * @return name
  70.      */
  71.     public function getName()
  72.     {
  73.         return $this->name;
  74.     }
  75.     /**
  76.      * Set name.
  77.      *
  78.      * @param name the value to set
  79.      */
  80.     public function setName($name): void
  81.     {
  82.         $this->name $name;
  83.     }
  84.     public function setTranslatableLocale($locale): void
  85.     {
  86.         $this->locale $locale;
  87.     }
  88. }