src/Entity/NmclArma.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use App\Crud\Entity\crudEntity;
  5. //use TrazasBundle\Interfaces\trazaInterface;
  6. /**
  7.  * NmclTipoIdentificacion
  8.  *
  9.  * @ORM\Table(name="nmcl_armas")
  10.  * @ORM\Entity(repositoryClass="App\Crud\Repository\crudRepository")
  11.  */
  12. class NmclArma extends crudEntity //implements trazaInterface 
  13. {
  14.     /**
  15.      * @var integer
  16.      *
  17.      * @ORM\Column(name="id", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="SEQUENCE")
  20.      * @ORM\SequenceGenerator(sequenceName="nmcl_armas_id_seq", allocationSize=1, initialValue=1)
  21.      */
  22.     private $id;
  23.     /**
  24.      * @var string
  25.      *
  26.      * @ORM\Column(name="nombre", type="string", length=100, nullable=false, unique=true)
  27.      */
  28.     private $nombre;
  29.     
  30.     /**
  31.      * @var integer
  32.      *
  33.      * @ORM\Column(name="id_dir_mov", type="integer", nullable=true)
  34.      */
  35.     private $idDirMov;
  36.     
  37.     /**
  38.      * Get id
  39.      *
  40.      * @return integer 
  41.      */
  42.     public function getId()
  43.     {
  44.         return $this->id;
  45.     }
  46.     /**
  47.      * Set nombre
  48.      *
  49.      * @param string $nombre
  50.      * @return NmclGrado
  51.      */
  52.     public function setNombre($nombre)
  53.     {
  54.         $this->nombre $nombre;
  55.     
  56.         return $this;
  57.     }
  58.     /**
  59.      * Get nombre
  60.      *
  61.      * @return string 
  62.      */
  63.     public function getNombre()
  64.     {
  65.         return $this->nombre;
  66.     }
  67.     
  68.     public function __toString()
  69.     {
  70.         return $this->nombre;
  71.     }
  72.     public static function getEntidadName()
  73.     {
  74.         return 'Arma militar';
  75.     }
  76.     
  77.     public function getIdDirMov(): ?int {
  78.         return $this->idDirMov;
  79.     }
  80.     public function setIdDirMov(int $idDirMov): void {
  81.         $this->idDirMov $idDirMov;
  82.     }
  83. }