src/AppBundle/Entity/Fraude.php line 13

  1. <?php
  2. namespace AppBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Table(name="fraude")
  6.  * @ORM\Entity(repositoryClass="AppBundle\Repository\FraudesRepository")
  7.  * Fraudes
  8.  */
  9. class Fraude
  10. {
  11.     /**
  12.      * @ORM\Column(type="integer")
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue(strategy="AUTO")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @var int
  19.      * @ORM\Column(name="tipo", type="integer", nullable=false)
  20.      */
  21.     private $tipo;
  22.     /**
  23.      * @ORM\Column(type="string", nullable=false)
  24.      */
  25.     private $fechayhora;
  26.     /**
  27.      * @var int
  28.      * @ORM\Column(name="usuario", type="integer", nullable=false)
  29.      */
  30.     private $usuario;
  31.     /**
  32.      * @var int
  33.      * @ORM\Column(name="empresa", type="integer", nullable=false)
  34.      */
  35.     private $empresa;
  36.     /**
  37.      * @var string
  38.      * @ORM\Column(name="email", type="string", nullable=false)
  39.      */
  40.     private $email;
  41.     /**
  42.      * @var string
  43.      * @ORM\Column(name="nombre", type="string", nullable=false)
  44.      */
  45.     private $nombre;
  46.     /**
  47.      * @var string
  48.      * @ORM\Column(name="apellido", type="string", nullable=false)
  49.      */
  50.     private $apellido;
  51.     /**
  52.      * @var string
  53.      * @ORM\Column(name="dispositivo", type="string", nullable=false)
  54.      */
  55.     private $dispositivo;
  56.     /**
  57.      * @var string
  58.      * @ORM\Column(name="navegador", type="string", nullable=false)
  59.      */
  60.     private $navegador;
  61.     /**
  62.      * @var string
  63.      * @ORM\Column(name="ip", type="string", nullable=false)
  64.      */
  65.     private $ip;
  66.     /**
  67.      * @var string
  68.      * @ORM\Column(name="userAgent", type="string", nullable=false)
  69.      */
  70.     private $userAgent;
  71.     /**
  72.      * @var string
  73.      * @ORM\Column(name="ubicacion", type="string", nullable=false)
  74.      */
  75.     private $ubicacion;
  76.     
  77.     /**
  78.      * Set the value of ubicacion
  79.      *
  80.      * @param  string  $ubicacion
  81.      *
  82.      * @return  self
  83.      */ 
  84.     public function setUbicacion(string $ubicacion)
  85.     {
  86.         $this->ubicacion $ubicacion;
  87.         return $this;
  88.     }
  89.     /**
  90.      * Get the value of ubicacion
  91.      *
  92.      * @return  string
  93.      */ 
  94.     public function getUbicacion()
  95.     {
  96.         return $this->ubicacion;
  97.     }
  98.     /**
  99.      * Get the value of userAgent
  100.      *
  101.      * @return  string
  102.      */ 
  103.     public function getUserAgent()
  104.     {
  105.         return $this->userAgent;
  106.     }
  107.     /**
  108.      * Set the value of userAgent
  109.      *
  110.      * @param  string  $userAgent
  111.      *
  112.      * @return  self
  113.      */ 
  114.     public function setUserAgent(string $userAgent)
  115.     {
  116.         $this->userAgent $userAgent;
  117.         return $this;
  118.     }
  119.     /**
  120.      * Get the value of ip
  121.      *
  122.      * @return  string
  123.      */ 
  124.     public function getIp()
  125.     {
  126.         return $this->ip;
  127.     }
  128.     /**
  129.      * Set the value of ip
  130.      *
  131.      * @param  string  $ip
  132.      *
  133.      * @return  self
  134.      */ 
  135.     public function setIp(string $ip)
  136.     {
  137.         $this->ip $ip;
  138.         return $this;
  139.     }
  140.     /**
  141.      * Get the value of navegador
  142.      *
  143.      * @return  string
  144.      */ 
  145.     public function getNavegador()
  146.     {
  147.         return $this->navegador;
  148.     }
  149.     /**
  150.      * Set the value of navegador
  151.      *
  152.      * @param  string  $navegador
  153.      *
  154.      * @return  self
  155.      */ 
  156.     public function setNavegador(string $navegador)
  157.     {
  158.         $this->navegador $navegador;
  159.         return $this;
  160.     }
  161.     /**
  162.      * Get the value of dispositivo
  163.      *
  164.      * @return  string
  165.      */ 
  166.     public function getDispositivo()
  167.     {
  168.         return $this->dispositivo;
  169.     }
  170.     /**
  171.      * Set the value of dispositivo
  172.      *
  173.      * @param  string  $dispositivo
  174.      *
  175.      * @return  self
  176.      */ 
  177.     public function setDispositivo(string $dispositivo)
  178.     {
  179.         $this->dispositivo $dispositivo;
  180.         return $this;
  181.     }
  182.     /**
  183.      * Get the value of apellido
  184.      *
  185.      * @return  string
  186.      */ 
  187.     public function getApellido()
  188.     {
  189.         return $this->apellido;
  190.     }
  191.     /**
  192.      * Set the value of apellido
  193.      *
  194.      * @param  string  $apellido
  195.      *
  196.      * @return  self
  197.      */ 
  198.     public function setApellido(string $apellido)
  199.     {
  200.         $this->apellido $apellido;
  201.         return $this;
  202.     }
  203.     /**
  204.      * Get the value of nombre
  205.      *
  206.      * @return  string
  207.      */ 
  208.     public function getNombre()
  209.     {
  210.         return $this->nombre;
  211.     }
  212.     /**
  213.      * Set the value of nombre
  214.      *
  215.      * @param  string  $nombre
  216.      *
  217.      * @return  self
  218.      */ 
  219.     public function setNombre(string $nombre)
  220.     {
  221.         $this->nombre $nombre;
  222.         return $this;
  223.     }
  224.     /**
  225.      * Get the value of email
  226.      *
  227.      * @return  string
  228.      */ 
  229.     public function getEmail()
  230.     {
  231.         return $this->email;
  232.     }
  233.     /**
  234.      * Set the value of email
  235.      *
  236.      * @param  string  $email
  237.      *
  238.      * @return  self
  239.      */ 
  240.     public function setEmail(string $email)
  241.     {
  242.         $this->email $email;
  243.         return $this;
  244.     }
  245.     /**
  246.      * Get the value of empresa
  247.      *
  248.      * @return  int
  249.      */ 
  250.     public function getEmpresa()
  251.     {
  252.         return $this->empresa;
  253.     }
  254.     /**
  255.      * Set the value of empresa
  256.      *
  257.      * @param  int  $empresa
  258.      *
  259.      * @return  self
  260.      */ 
  261.     public function setEmpresa(int $empresa)
  262.     {
  263.         $this->empresa $empresa;
  264.         return $this;
  265.     }
  266.     /**
  267.      * Get the value of usuario
  268.      *
  269.      * @return  int
  270.      */ 
  271.     public function getUsuario()
  272.     {
  273.         return $this->usuario;
  274.     }
  275.     /**
  276.      * Set the value of usuario
  277.      *
  278.      * @param  int  $usuario
  279.      *
  280.      * @return  self
  281.      */ 
  282.     public function setUsuario(int $usuario)
  283.     {
  284.         $this->usuario $usuario;
  285.         return $this;
  286.     }
  287.     /**
  288.      * Get the value of fechayhora
  289.      */ 
  290.     public function getFechayhora()
  291.     {
  292.         return $this->fechayhora;
  293.     }
  294.     /**
  295.      * Set the value of fechayhora
  296.      *
  297.      * @return  self
  298.      */ 
  299.     public function setFechayhora($fechayhora)
  300.     {
  301.         $this->fechayhora $fechayhora;
  302.         return $this;
  303.     }
  304.     /**
  305.      * Get the value of tipo
  306.      *
  307.      * @return  int
  308.      */ 
  309.     public function getTipo()
  310.     {
  311.         return $this->tipo;
  312.     }
  313.     /**
  314.      * Set the value of tipo
  315.      *
  316.      * @param  int  $tipo
  317.      *
  318.      * @return  self
  319.      */ 
  320.     public function setTipo(int $tipo)
  321.     {
  322.         $this->tipo $tipo;
  323.         return $this;
  324.     }
  325.     /**
  326.      * Get the value of id
  327.      */ 
  328.     public function getId()
  329.     {
  330.         return $this->id;
  331.     }
  332.     /**
  333.      * Set the value of id
  334.      *
  335.      * @return  self
  336.      */ 
  337.     public function setId($id)
  338.     {
  339.         $this->id $id;
  340.         return $this;
  341.     }
  342. }