<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* CatTiposMovimientos
*
* @ORM\Table(name="cat_tipos_movimientos")
* @ORM\Entity
*/
class CatTiposMovimientos
{
/**
* @var int
*
* @ORM\Column(name="id_mov", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $idMov;
/**
* @var string|null
*
* @ORM\Column(name="tipo_mov", type="string", length=25, nullable=true)
*/
private $tipoMov;
/**
* Get the value of idMov
*
* @return int
*/
public function getIdMov()
{
return $this->idMov;
}
/**
* Get the value of tipoMov
*
* @return string|null
*/
public function getTipoMov()
{
return $this->tipoMov;
}
/**
* Set the value of tipoMov
*
* @param string|null $tipoMov
*
* @return self
*/
public function setTipoMov($tipoMov)
{
$this->tipoMov = $tipoMov;
return $this;
}
/**
* Convert the object to a string
*
* @return string
*/
public function __toString()
{
return (string) $this->tipoMov;
}
// Campos de los tipos de moviemientos
}