<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* TbPreClienteEstado
*
* @ORM\Table(name="tb_pre_cliente_estado", uniqueConstraints={@ORM\UniqueConstraint(name="int_id_pre_cliente_estado_UNIQUE", columns={"int_id_pre_cliente_estado"})})
* @ORM\Entity(repositoryClass="App\Repository\TbPreClienteEstadoRepository")
*/
class TbPreClienteEstado
{
/**
* @var int
*
* @ORM\Column(name="int_id_pre_cliente_estado", type="integer", nullable=false, options={"unsigned"=true})
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $intIdPreClienteEstado;
/**
* @var string
*
* @ORM\Column(name="str_estado", type="string", length=45, nullable=false)
*/
private $strEstado;
/**
* @var string
*
* @ORM\Column(name="str_detalle", type="string", length=255, nullable=false)
*/
private $strDetalle;
public function getIntIdPreClienteEstado(): ?int
{
return $this->intIdPreClienteEstado;
}
public function getStrEstado(): ?string
{
return $this->strEstado;
}
public function setStrEstado(string $strEstado): self
{
$this->strEstado = $strEstado;
return $this;
}
public function getStrDetalle(): ?string
{
return $this->strDetalle;
}
public function setStrDetalle(string $strDetalle): self
{
$this->strDetalle = $strDetalle;
return $this;
}
}