src/Entity/Entradas.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EntradasRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassEntradasRepository::class)]
  6. #[ORM\Table(name"entradas")]
  7. class Entradas
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column(type'integer')]
  12.     private $id;
  13.     #[ORM\Column(type'string'length150)]
  14.     private $nome;
  15.     #[ORM\Column(type'datetime')]
  16.     private $createdAt;
  17.     #[ORM\Column(type'datetime'nullabletrue)]
  18.     private $updatedAt;
  19.     #[ORM\Column]
  20.     private ?int $preco null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $descricao null;
  23.     #[ORM\Column(length255)]
  24.     private ?string $img null;
  25.     
  26.     public function __construct()
  27.     {
  28.         $this->createdAt = new \DateTime();
  29.     }
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getNome(): ?string
  35.     {
  36.         return $this->nome;
  37.     }
  38.     public function setNome(string $nome): self
  39.     {
  40.         $this->nome $nome;
  41.         return $this;
  42.     }
  43.     public function getCreatedAt(): ?\DateTimeInterface
  44.     {
  45.         return $this->createdAt;
  46.     }
  47.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  48.     {
  49.         $this->createdAt $createdAt;
  50.         return $this;
  51.     }
  52.     public function getUpdatedAt(): ?\DateTimeInterface
  53.     {
  54.         return $this->updatedAt;
  55.     }
  56.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  57.     {
  58.         $this->updatedAt $updatedAt;
  59.         return $this;
  60.     }
  61.     public function getPreco(): ?int
  62.     {
  63.         return $this->preco;
  64.     }
  65.     public function setPreco(int $preco): self
  66.     {
  67.         $this->preco $preco;
  68.         return $this;
  69.     }
  70.     public function getDescricao(): ?string
  71.     {
  72.         return $this->descricao;
  73.     }
  74.     public function setDescricao(?string $descricao): self
  75.     {
  76.         $this->descricao $descricao;
  77.         return $this;
  78.     }
  79.     public function getImg(): ?string
  80.     {
  81.         return $this->img;
  82.     }
  83.     public function setImg(string $img): self
  84.     {
  85.         $this->img $img;
  86.         return $this;
  87.     }
  88. }