src/AppBundle/Entity/Fraude.php line 13
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="fraude")
* @ORM\Entity(repositoryClass="AppBundle\Repository\FraudesRepository")
* Fraudes
*/
class Fraude
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var int
* @ORM\Column(name="tipo", type="integer", nullable=false)
*/
private $tipo;
/**
* @ORM\Column(type="string", nullable=false)
*/
private $fechayhora;
/**
* @var int
* @ORM\Column(name="usuario", type="integer", nullable=false)
*/
private $usuario;
/**
* @var int
* @ORM\Column(name="empresa", type="integer", nullable=false)
*/
private $empresa;
/**
* @var string
* @ORM\Column(name="email", type="string", nullable=false)
*/
private $email;
/**
* @var string
* @ORM\Column(name="nombre", type="string", nullable=false)
*/
private $nombre;
/**
* @var string
* @ORM\Column(name="apellido", type="string", nullable=false)
*/
private $apellido;
/**
* @var string
* @ORM\Column(name="dispositivo", type="string", nullable=false)
*/
private $dispositivo;
/**
* @var string
* @ORM\Column(name="navegador", type="string", nullable=false)
*/
private $navegador;
/**
* @var string
* @ORM\Column(name="ip", type="string", nullable=false)
*/
private $ip;
/**
* @var string
* @ORM\Column(name="userAgent", type="string", nullable=false)
*/
private $userAgent;
/**
* @var string
* @ORM\Column(name="ubicacion", type="string", nullable=false)
*/
private $ubicacion;
/**
* Set the value of ubicacion
*
* @param string $ubicacion
*
* @return self
*/
public function setUbicacion(string $ubicacion)
{
$this->ubicacion = $ubicacion;
return $this;
}
/**
* Get the value of ubicacion
*
* @return string
*/
public function getUbicacion()
{
return $this->ubicacion;
}
/**
* Get the value of userAgent
*
* @return string
*/
public function getUserAgent()
{
return $this->userAgent;
}
/**
* Set the value of userAgent
*
* @param string $userAgent
*
* @return self
*/
public function setUserAgent(string $userAgent)
{
$this->userAgent = $userAgent;
return $this;
}
/**
* Get the value of ip
*
* @return string
*/
public function getIp()
{
return $this->ip;
}
/**
* Set the value of ip
*
* @param string $ip
*
* @return self
*/
public function setIp(string $ip)
{
$this->ip = $ip;
return $this;
}
/**
* Get the value of navegador
*
* @return string
*/
public function getNavegador()
{
return $this->navegador;
}
/**
* Set the value of navegador
*
* @param string $navegador
*
* @return self
*/
public function setNavegador(string $navegador)
{
$this->navegador = $navegador;
return $this;
}
/**
* Get the value of dispositivo
*
* @return string
*/
public function getDispositivo()
{
return $this->dispositivo;
}
/**
* Set the value of dispositivo
*
* @param string $dispositivo
*
* @return self
*/
public function setDispositivo(string $dispositivo)
{
$this->dispositivo = $dispositivo;
return $this;
}
/**
* Get the value of apellido
*
* @return string
*/
public function getApellido()
{
return $this->apellido;
}
/**
* Set the value of apellido
*
* @param string $apellido
*
* @return self
*/
public function setApellido(string $apellido)
{
$this->apellido = $apellido;
return $this;
}
/**
* Get the value of nombre
*
* @return string
*/
public function getNombre()
{
return $this->nombre;
}
/**
* Set the value of nombre
*
* @param string $nombre
*
* @return self
*/
public function setNombre(string $nombre)
{
$this->nombre = $nombre;
return $this;
}
/**
* Get the value of email
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Set the value of email
*
* @param string $email
*
* @return self
*/
public function setEmail(string $email)
{
$this->email = $email;
return $this;
}
/**
* Get the value of empresa
*
* @return int
*/
public function getEmpresa()
{
return $this->empresa;
}
/**
* Set the value of empresa
*
* @param int $empresa
*
* @return self
*/
public function setEmpresa(int $empresa)
{
$this->empresa = $empresa;
return $this;
}
/**
* Get the value of usuario
*
* @return int
*/
public function getUsuario()
{
return $this->usuario;
}
/**
* Set the value of usuario
*
* @param int $usuario
*
* @return self
*/
public function setUsuario(int $usuario)
{
$this->usuario = $usuario;
return $this;
}
/**
* Get the value of fechayhora
*/
public function getFechayhora()
{
return $this->fechayhora;
}
/**
* Set the value of fechayhora
*
* @return self
*/
public function setFechayhora($fechayhora)
{
$this->fechayhora = $fechayhora;
return $this;
}
/**
* Get the value of tipo
*
* @return int
*/
public function getTipo()
{
return $this->tipo;
}
/**
* Set the value of tipo
*
* @param int $tipo
*
* @return self
*/
public function setTipo(int $tipo)
{
$this->tipo = $tipo;
return $this;
}
/**
* Get the value of id
*/
public function getId()
{
return $this->id;
}
/**
* Set the value of id
*
* @return self
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
}