src/Entity/EstadisticasArticulosCliente.php line 12

Open in your IDE?
  1. <?php 
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * 
  6.  * @ORM\Table(name="estadisticas_articulos_cliente")
  7.  * @ORM\Entity
  8.  */
  9. class EstadisticasArticulosCliente
  10. {
  11.     use Timestamp;
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=20, nullable=true)
  20.      */
  21.     private $nifcliente;
  22.     /**
  23.      * @ORM\Column(type="string", length=15)
  24.      */
  25.     private $telefonocliente;
  26.     
  27.     /**
  28.      * @ORM\Column(name="CODARTICULO", type="integer", nullable=false)
  29.     */
  30.     private $codarticulo;
  31.     /**
  32.      * @ORM\Column(name="frecuencia", type="integer")
  33.     */
  34.     private $frecuencia;
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getNifcliente(): ?string
  40.     {
  41.         return $this->nifcliente;
  42.     }
  43.     public function setNifcliente(?string $nifcliente): self
  44.     {
  45.         $this->nifcliente $nifcliente;
  46.         return $this;
  47.     }
  48.     public function getTelefonocliente(): ?string
  49.     {
  50.         return $this->telefonocliente;
  51.     }
  52.     public function setTelefonocliente(string $telefonocliente): self
  53.     {
  54.         $this->telefonocliente $telefonocliente;
  55.         return $this;
  56.     }
  57.     public function getCodarticulo(): ?int
  58.     {
  59.         return $this->codarticulo;
  60.     }
  61.     public function setCodarticulo(?int $codarticulo): self
  62.     {
  63.         $this->codarticulo $codarticulo;
  64.         return $this;
  65.     }
  66.     public function getFrecuencia(): ?int
  67.     {
  68.         return $this->frecuencia;
  69.     }
  70.     public function setFrecuencia(?int $frecuencia): self
  71.     {
  72.         $this->frecuencia $frecuencia;
  73.         return $this;
  74.     }
  75. }