<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @ORM\Table(name="estadisticas_articulos_cliente")
* @ORM\Entity
*/
class EstadisticasArticulosCliente
{
use Timestamp;
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=20, nullable=true)
*/
private $nifcliente;
/**
* @ORM\Column(type="string", length=15)
*/
private $telefonocliente;
/**
* @ORM\Column(name="CODARTICULO", type="integer", nullable=false)
*/
private $codarticulo;
/**
* @ORM\Column(name="frecuencia", type="integer")
*/
private $frecuencia;
public function getId(): ?int
{
return $this->id;
}
public function getNifcliente(): ?string
{
return $this->nifcliente;
}
public function setNifcliente(?string $nifcliente): self
{
$this->nifcliente = $nifcliente;
return $this;
}
public function getTelefonocliente(): ?string
{
return $this->telefonocliente;
}
public function setTelefonocliente(string $telefonocliente): self
{
$this->telefonocliente = $telefonocliente;
return $this;
}
public function getCodarticulo(): ?int
{
return $this->codarticulo;
}
public function setCodarticulo(?int $codarticulo): self
{
$this->codarticulo = $codarticulo;
return $this;
}
public function getFrecuencia(): ?int
{
return $this->frecuencia;
}
public function setFrecuencia(?int $frecuencia): self
{
$this->frecuencia = $frecuencia;
return $this;
}
}