src/Entity/CcArticulosBloqueados.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="cc_articulos_bloqueados")
  7.  * @ORM\Entity
  8.  */
  9. class CcArticulosBloqueados
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="integer")
  19.      */
  20.     private $codarticulo;
  21.     /**
  22.      * @ORM\Column(type="string", length=20, nullable=true)
  23.      */
  24.     private $sucursal;
  25.     /**
  26.      * @ORM\Column(type="boolean")
  27.      */
  28.     private $bloqueado true;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getCodarticulo(): ?int
  34.     {
  35.         return $this->codarticulo;
  36.     }
  37.     public function setCodarticulo(int $codarticulo): static
  38.     {
  39.         $this->codarticulo $codarticulo;
  40.         return $this;
  41.     }
  42.     public function isBloqueado(): ?bool
  43.     {
  44.         return $this->bloqueado;
  45.     }
  46.     public function setBloqueado(bool $bloqueado): static
  47.     {
  48.         $this->bloqueado $bloqueado;
  49.         return $this;
  50.     }
  51.     public function getSucursal(): ?string
  52.     {
  53.         return $this->sucursal;
  54.     }
  55.     public function setSucursal(?string $sucursal): self
  56.     {
  57.         $this->sucursal $sucursal;
  58.         return $this;
  59.     }
  60. }