BillTotalDetail.php 480 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity\Billing;
  4. // use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;
  5. use ApiPlatform\Metadata\ApiResource;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8. * Classe ... qui ...
  9. */
  10. // #[Auditable]
  11. #[ApiResource(operations: [])]
  12. #[ORM\Entity]
  13. class BillTotalDetail
  14. {
  15. #[ORM\Id]
  16. #[ORM\Column]
  17. #[ORM\GeneratedValue]
  18. private ?int $id = null;
  19. public function getId(): ?int
  20. {
  21. return $this->id;
  22. }
  23. }