src/Entity/ViewProfile.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(readOnly=true, repositoryClass="App\Repository\ViewProfileRepository")
  6.  * @ORM\Table(name="view_profile")
  7.  */
  8. class ViewProfile
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\Column(type="integer", nullable=true)
  13.      */
  14.     private $idRol;
  15.     /**
  16.      * @ORM\Column(type="string", length=50, nullable=true)
  17.      */
  18.     private $rol;
  19.     /**
  20.      * @ORM\Id
  21.      * @ORM\Column(type="integer", nullable=true)
  22.      */
  23.     private $idMod;
  24.     /**
  25.      * @ORM\Column(type="string", length=150, nullable=true)
  26.      */
  27.     private $idMenu;
  28.     /**
  29.      * @ORM\Column(type="string", length=150, nullable=true)
  30.      */
  31.     private $idSubmenu;
  32.     /**
  33.      * @ORM\Column(type="string", length=150, nullable=true)
  34.      */
  35.     private $modulo;
  36.     /**
  37.      * @ORM\Column(type="string", length=150, nullable=true)
  38.      */
  39.     private $submenu;
  40.     /**
  41.      * @ORM\Column(type="string", length=100, nullable=true)
  42.      */
  43.     private $ruta;
  44.     /**
  45.      * @ORM\Column(type="string", length=100, nullable=true)
  46.      */
  47.     private $icono;
  48.     /**
  49.      * @ORM\Column(type="integer")
  50.      */
  51.     private $orden;
  52.     /**
  53.      * @ORM\Column(type="integer", nullable=true)
  54.      */
  55.     private $idBeh;
  56.     /**
  57.      * @ORM\Column(type="integer")
  58.      */
  59.     private $nivel;
  60.     /**
  61.      * @ORM\Column(type="string", length=100, nullable=true)
  62.      */
  63.     private $comportamiento;
  64.     /**
  65.      * @ORM\Column(type="text", nullable=true)
  66.      */
  67.     private $descripcion;
  68.     public function getIdRol(): ?int
  69.     {
  70.         return $this->idRol;
  71.     }
  72.     public function getRol(): ?string
  73.     {
  74.         return $this->rol;
  75.     }
  76.     public function getIdMod(): ?int
  77.     {
  78.         return $this->idMod;
  79.     }
  80.     public function getIdMenu(): ?string
  81.     {
  82.         return $this->idMenu;
  83.     }
  84.     public function getIdSubmenu(): ?string
  85.     {
  86.         return $this->idSubmenu;
  87.     }
  88.     public function getModulo(): ?string
  89.     {
  90.         return $this->modulo;
  91.     }
  92.     public function getSubmenu(): ?string
  93.     {
  94.         return $this->submenu;
  95.     }
  96.     public function getRuta(): ?string
  97.     {
  98.         return $this->ruta;
  99.     }
  100.     public function getIcono(): ?string
  101.     {
  102.         return $this->icono;
  103.     }
  104.     public function getOrden(): ?int
  105.     {
  106.         return $this->orden;
  107.     }
  108.     public function getIdBeh(): ?int
  109.     {
  110.         return $this->idBeh;
  111.     }
  112.     public function getNivel(): ?int
  113.     {
  114.         return $this->nivel;
  115.     }
  116.     public function getComportamiento(): ?string
  117.     {
  118.         return $this->comportamiento;
  119.     }
  120.     public function getDescripcion(): ?string
  121.     {
  122.         return $this->descripcion;
  123.     }
  124.     // Entidad de la vista
  125. }