<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Clientesenvio
*
* @ORM\Table(name="clientesenvio", indexes={@ORM\Index(name="CODCLIENTE", columns={"CODCLIENTE"})}, options={"readOnly": true})
* @ORM\Entity
*/
class Clientesenvio
{
/**
* @var int
*
* @ORM\id
* @ORM\Column(name="CODCLIENTE", type="integer", nullable=false)
*/
private $codcliente;
/**
* @var int
*
* @ORM\Column(name="CODENVIO", type="integer", nullable=false)
*/
private $codenvio;
/**
* @var string|null
*
* @ORM\Column(name="NOMBRECOMERCIAL", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $nombrecomercial = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DIRECCION1", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $direccion1 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DIRECCION2", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $direccion2 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CODPOSTAL", type="string", length=8, nullable=true, options={"default"="NULL"})
*/
private $codpostal = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="POBLACION", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $poblacion = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PROVINCIA", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $provincia = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PAIS", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $pais = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TELEFONO", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $telefono = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FAX", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $fax = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="EMAIL", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $email = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="PERSONACONTACTO", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $personacontacto = 'NULL';
/**
* @var int|null
*
* @ORM\Column(name="CODTRANSPORTE", type="integer", nullable=true, options={"default"="NULL"})
*/
private $codtransporte = NULL;
/**
* @var string|null
*
* @ORM\Column(name="TIPOPORTES", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $tipoportes = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="CANTPORTESPAG", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $cantportespag = NULL;
/**
* @var string|null
*
* @ORM\Column(name="POPERACIONAL", type="string", length=15, nullable=true, options={"default"="NULL"})
*/
private $poperacional = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="DEFECTO", type="string", length=1, nullable=true, options={"default"="NULL"})
*/
private $defecto = 'NULL';
/**
* @var float|null
*
* @ORM\Column(name="KMS", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
*/
private $kms = NULL;
/**
* @var string|null
*
* @ORM\Column(name="CODPAIS", type="string", length=2, nullable=true, options={"default"="NULL"})
*/
private $codpais = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="OBSERVACIONES", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $observaciones = 'NULL';
public function getCodcliente(): ?int
{
return $this->codcliente;
}
public function setCodcliente(int $codcliente): self
{
$this->codcliente = $codcliente;
return $this;
}
public function getCodenvio(): ?int
{
return $this->codenvio;
}
public function setCodenvio(int $codenvio): self
{
$this->codenvio = $codenvio;
return $this;
}
public function getNombrecomercial(): ?string
{
return $this->nombrecomercial;
}
public function setNombrecomercial(?string $nombrecomercial): self
{
$this->nombrecomercial = $nombrecomercial;
return $this;
}
public function getDireccion1(): ?string
{
return $this->direccion1;
}
public function setDireccion1(?string $direccion1): self
{
$this->direccion1 = $direccion1;
return $this;
}
public function getDireccion2(): ?string
{
return $this->direccion2;
}
public function setDireccion2(?string $direccion2): self
{
$this->direccion2 = $direccion2;
return $this;
}
public function getCodpostal(): ?string
{
return $this->codpostal;
}
public function setCodpostal(?string $codpostal): self
{
$this->codpostal = $codpostal;
return $this;
}
public function getPoblacion(): ?string
{
return $this->poblacion;
}
public function setPoblacion(?string $poblacion): self
{
$this->poblacion = $poblacion;
return $this;
}
public function getProvincia(): ?string
{
return $this->provincia;
}
public function setProvincia(?string $provincia): self
{
$this->provincia = $provincia;
return $this;
}
public function getPais(): ?string
{
return $this->pais;
}
public function setPais(?string $pais): self
{
$this->pais = $pais;
return $this;
}
public function getTelefono(): ?string
{
return $this->telefono;
}
public function setTelefono(?string $telefono): self
{
$this->telefono = $telefono;
return $this;
}
public function getFax(): ?string
{
return $this->fax;
}
public function setFax(?string $fax): self
{
$this->fax = $fax;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): self
{
$this->email = $email;
return $this;
}
public function getPersonacontacto(): ?string
{
return $this->personacontacto;
}
public function setPersonacontacto(?string $personacontacto): self
{
$this->personacontacto = $personacontacto;
return $this;
}
public function getCodtransporte(): ?int
{
return $this->codtransporte;
}
public function setCodtransporte(?int $codtransporte): self
{
$this->codtransporte = $codtransporte;
return $this;
}
public function getTipoportes(): ?string
{
return $this->tipoportes;
}
public function setTipoportes(?string $tipoportes): self
{
$this->tipoportes = $tipoportes;
return $this;
}
public function getCantportespag(): ?float
{
return $this->cantportespag;
}
public function setCantportespag(?float $cantportespag): self
{
$this->cantportespag = $cantportespag;
return $this;
}
public function getPoperacional(): ?string
{
return $this->poperacional;
}
public function setPoperacional(?string $poperacional): self
{
$this->poperacional = $poperacional;
return $this;
}
public function getDefecto(): ?string
{
return $this->defecto;
}
public function setDefecto(?string $defecto): self
{
$this->defecto = $defecto;
return $this;
}
public function getKms(): ?float
{
return $this->kms;
}
public function setKms(?float $kms): self
{
$this->kms = $kms;
return $this;
}
public function getCodpais(): ?string
{
return $this->codpais;
}
public function setCodpais(?string $codpais): self
{
$this->codpais = $codpais;
return $this;
}
public function getObservaciones(): ?string
{
return $this->observaciones;
}
public function setObservaciones(?string $observaciones): self
{
$this->observaciones = $observaciones;
return $this;
}
}