src/Entity/Bills.php line 12

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BillsRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassBillsRepository::class)]
  9. class Bills
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  16.     private ?\DateTimeInterface $created null;
  17.     #[ORM\Column(length255)]
  18.     private ?string $number null;
  19.     #[ORM\Column(length255)]
  20.     private ?string $formattedNumber null;
  21.     #[ORM\Column(length255)]
  22.     private ?string $folderPath null;
  23.     public function __construct()
  24.     {
  25.     }
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getCreated(): ?\DateTimeInterface
  31.     {
  32.         return $this->created;
  33.     }
  34.     public function setCreated(\DateTimeInterface $created): self
  35.     {
  36.         $this->created $created;
  37.         return $this;
  38.     }
  39.     public function getNumber(): ?string
  40.     {
  41.         return $this->number;
  42.     }
  43.     public function setNumber(string $number): self
  44.     {
  45.         $this->number $number;
  46.         return $this;
  47.     }
  48.     public function getFormattedNumber(): ?string
  49.     {
  50.         return $this->formattedNumber;
  51.     }
  52.     public function setFormattedNumber(string $formattedNumber): self
  53.     {
  54.         $this->formattedNumber $formattedNumber;
  55.         return $this;
  56.     }
  57.     public function getFolderPath(): ?string
  58.     {
  59.         return $this->folderPath;
  60.     }
  61.     public function setFolderPath(string $folderPath): self
  62.     {
  63.         $this->folderPath $folderPath;
  64.         return $this;
  65.     }
  66. }