<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Clientescamposlibres
*
* @ORM\Table(name="clientescamposlibres", options={"readOnly": true})
* @ORM\Entity
*/
class Clientescamposlibres
{
/**
* @var int
*
* @ORM\Id
* @ORM\Column(name="CODCLIENTE", type="integer", nullable=false)
*/
private $codcliente;
/**
* @var string|null
*
* @ORM\Column(name="DIRECCION_2", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $direccion_2 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="NOMBRE_1", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $nombre_1 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="OTROS_NOMBRES", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $otros_nombres = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="APELLIDO_1", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $apellido_1 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="APELLIDO_2", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $apellido_2 = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FE_MUNICIPIO", type="string", length=10, nullable=true, options={"default"="NULL"})
*/
private $fe_municipio = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FE_RESPONSABILIDADES", type="string", length=255, nullable=true, options={"default"="NULL"})
*/
private $fe_responsabilidades = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TIPO_DE_DOCUMENTO", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $tipo_de_documento = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="TIPOPERSONA", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $tipopersona = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FE_REGIMEN", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $fe_regimen = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="FE_DET_TRIBUTARIO", type="string", length=100, nullable=true, options={"default"="NULL"})
*/
private $fe_det_tributario = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CUENTA_ALIMENTACION", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $cuenta_alimentacion = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CENTRO_COSTOS", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $centro_costos = 'NULL';
/**
* @var string|null
*
* @ORM\Column(name="CENTRO_OPERACION", type="string", length=50, nullable=true, options={"default"="NULL"})
*/
private $centro_operacion = 'NULL';
public function getCodcliente(): ?int
{
return $this->codcliente;
}
public function getDireccion2(): ?string
{
return $this->direccion_2;
}
public function setDireccion2(?string $direccion_2): static
{
$this->direccion_2 = $direccion_2;
return $this;
}
public function getNombre1(): ?string
{
return $this->nombre_1;
}
public function setNombre1(?string $nombre_1): static
{
$this->nombre_1 = $nombre_1;
return $this;
}
public function getOtrosNombres(): ?string
{
return $this->otros_nombres;
}
public function setOtrosNombres(?string $otros_nombres): static
{
$this->otros_nombres = $otros_nombres;
return $this;
}
public function getApellido1(): ?string
{
return $this->apellido_1;
}
public function setApellido1(?string $apellido_1): static
{
$this->apellido_1 = $apellido_1;
return $this;
}
public function getApellido2(): ?string
{
return $this->apellido_2;
}
public function setApellido2(?string $apellido_2): static
{
$this->apellido_2 = $apellido_2;
return $this;
}
public function getFeMunicipio(): ?string
{
return $this->fe_municipio;
}
public function setFeMunicipio(?string $fe_municipio): static
{
$this->fe_municipio = $fe_municipio;
return $this;
}
public function getFeResponsabilidades(): ?string
{
return $this->fe_responsabilidades;
}
public function setFeResponsabilidades(?string $fe_responsabilidades): static
{
$this->fe_responsabilidades = $fe_responsabilidades;
return $this;
}
public function getTipoDeDocumento(): ?string
{
return $this->tipo_de_documento;
}
public function setTipoDeDocumento(?string $tipo_de_documento): static
{
$this->tipo_de_documento = $tipo_de_documento;
return $this;
}
public function getTipopersona(): ?string
{
return $this->tipopersona;
}
public function setTipopersona(?string $tipopersona): static
{
$this->tipopersona = $tipopersona;
return $this;
}
public function getFeRegimen(): ?string
{
return $this->fe_regimen;
}
public function setFeRegimen(?string $fe_regimen): static
{
$this->fe_regimen = $fe_regimen;
return $this;
}
public function getFeDetTributario(): ?string
{
return $this->fe_det_tributario;
}
public function setFeDetTributario(?string $fe_det_tributario): static
{
$this->fe_det_tributario = $fe_det_tributario;
return $this;
}
public function getCuentaAlimentacion(): ?string
{
return $this->cuenta_alimentacion;
}
public function setCuentaAlimentacion(?string $cuenta_alimentacion): static
{
$this->cuenta_alimentacion = $cuenta_alimentacion;
return $this;
}
public function getCentroCostos(): ?string
{
return $this->centro_costos;
}
public function setCentroCostos(?string $centro_costos): static
{
$this->centro_costos = $centro_costos;
return $this;
}
public function getCentroOperacion(): ?string
{
return $this->centro_operacion;
}
public function setCentroOperacion(?string $centro_operacion): static
{
$this->centro_operacion = $centro_operacion;
return $this;
}
}
// <?php
// namespace App\Entity;
// use Doctrine\ORM\Mapping as ORM;
// #[ORM\Entity]
// #[ORM\Table(name: "clientescamposlibres", options: ["readOnly" => true])]
// class Clientescamposlibres
// {
// #[ORM\Id]
// #[ORM\Column(name: "CODCLIENTE", type: "integer", nullable: false)]
// private $codcliente;
// #[ORM\Column(name: "DIRECCION_2", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $direccion_2 = 'NULL';
// #[ORM\Column(name: "NOMBRE_1", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $nombre_1 = 'NULL';
// #[ORM\Column(name: "OTROS_NOMBRES", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $otros_nombres = 'NULL';
// #[ORM\Column(name: "APELLIDO_1", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $apellido_1 = 'NULL';
// #[ORM\Column(name: "APELLIDO_2", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $apellido_2 = 'NULL';
// #[ORM\Column(name: "FE_MUNICIPIO", type: "string", length: 10, nullable: true, options: ["default" => "NULL"])]
// private $fe_municipio = 'NULL';
// #[ORM\Column(name: "FE_RESPONSABILIDADES", type: "string", length: 255, nullable: true, options: ["default" => "NULL"])]
// private $fe_responsabilidades = 'NULL';
// #[ORM\Column(name: "TIPO_DE_DOCUMENTO", type: "string", length: 100, nullable: true, options: ["default" => "NULL"])]
// private $tipo_de_documento = 'NULL';
// #[ORM\Column(name: "TIPOPERSONA", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $tipopersona = 'NULL';
// #[ORM\Column(name: "FE_REGIMEN", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $fe_regimen = 'NULL';
// #[ORM\Column(name: "FE_DET_TRIBUTARIO", type: "string", length: 100, nullable: true, options: ["default" => "NULL"])]
// private $fe_det_tributario = 'NULL';
// #[ORM\Column(name: "CUENTA_ALIMENTACION", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $cuenta_alimentacion = 'NULL';
// #[ORM\Column(name: "CENTRO_COSTOS", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $centro_costos = 'NULL';
// #[ORM\Column(name: "CENTRO_OPERACION", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
// private $centro_operacion = 'NULL';
// }