src/Entity/TbPreClienteEstado.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * TbPreClienteEstado
  6.  *
  7.  * @ORM\Table(name="tb_pre_cliente_estado", uniqueConstraints={@ORM\UniqueConstraint(name="int_id_pre_cliente_estado_UNIQUE", columns={"int_id_pre_cliente_estado"})})
  8.  * @ORM\Entity(repositoryClass="App\Repository\TbPreClienteEstadoRepository")
  9.  */
  10. class TbPreClienteEstado
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="int_id_pre_cliente_estado", type="integer", nullable=false, options={"unsigned"=true})
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $intIdPreClienteEstado;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="str_estado", type="string", length=45, nullable=false)
  24.      */
  25.     private $strEstado;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="str_detalle", type="string", length=255, nullable=false)
  30.      */
  31.     private $strDetalle;
  32.     public function getIntIdPreClienteEstado(): ?int
  33.     {
  34.         return $this->intIdPreClienteEstado;
  35.     }
  36.     public function getStrEstado(): ?string
  37.     {
  38.         return $this->strEstado;
  39.     }
  40.     public function setStrEstado(string $strEstado): self
  41.     {
  42.         $this->strEstado $strEstado;
  43.         return $this;
  44.     }
  45.     public function getStrDetalle(): ?string
  46.     {
  47.         return $this->strDetalle;
  48.     }
  49.     public function setStrDetalle(string $strDetalle): self
  50.     {
  51.         $this->strDetalle $strDetalle;
  52.         return $this;
  53.     }
  54. }