src/Entity/Carne.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CarneRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassCarneRepository::class)]
  6. #[ORM\Table(name"carne")]
  7. class Carne
  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.     public function __construct()
  26.     {
  27.         $this->createdAt = new \DateTime();
  28.     }
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getNome(): ?string
  34.     {
  35.         return $this->nome;
  36.     }
  37.     public function setNome(string $nome): self
  38.     {
  39.         $this->nome $nome;
  40.         return $this;
  41.     }
  42.     public function getCreatedAt(): ?\DateTimeInterface
  43.     {
  44.         return $this->createdAt;
  45.     }
  46.     public function setCreatedAt(\DateTimeInterface $createdAt): self
  47.     {
  48.         $this->createdAt $createdAt;
  49.         return $this;
  50.     }
  51.     public function getUpdatedAt(): ?\DateTimeInterface
  52.     {
  53.         return $this->updatedAt;
  54.     }
  55.     public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
  56.     {
  57.         $this->updatedAt $updatedAt;
  58.         return $this;
  59.     }
  60.     public function getPreco(): ?int
  61.     {
  62.         return $this->preco;
  63.     }
  64.     public function setPreco(int $preco): self
  65.     {
  66.         $this->preco $preco;
  67.         return $this;
  68.     }
  69.     public function getDescricao(): ?string
  70.     {
  71.         return $this->descricao;
  72.     }
  73.     public function setDescricao(?string $descricao): self
  74.     {
  75.         $this->descricao $descricao;
  76.         return $this;
  77.     }
  78.     public function getImg(): ?string
  79.     {
  80.         return $this->img;
  81.     }
  82.     public function setImg(string $img): self
  83.     {
  84.         $this->img $img;
  85.         return $this;
  86.     }
  87. }