| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- declare(strict_types=1);
- namespace App\Entity\Billing;
- // use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;
- use ApiPlatform\Metadata\ApiResource;
- use App\Entity\Core\File;
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\Common\Collections\Collection;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * TODO: documenter.
- */
- // #[Auditable]
- #[ApiResource(operations: [])]
- #[ORM\Entity]
- class Jvs
- {
- #[ORM\Id]
- #[ORM\Column]
- #[ORM\GeneratedValue]
- private ?int $id = null;
- /** @var Collection<int, Bill> */
- #[ORM\OneToMany(targetEntity: Bill::class, mappedBy: 'jvs', cascade: ['persist'], orphanRemoval: true)]
- private Collection $bills;
- #[ORM\OneToOne(targetEntity: File::class, cascade: ['persist'])]
- protected ?File $file;
- public function __construct()
- {
- $this->bills = new ArrayCollection();
- }
- public function getId(): ?int
- {
- return $this->id;
- }
- /**
- * @return Collection<int, Bill>
- */
- public function getBills(): Collection
- {
- return $this->bills;
- }
- public function addBill(Bill $bill): self
- {
- if (!$this->bills->contains($bill)) {
- $this->bills[] = $bill;
- $bill->setJvs($this);
- }
- return $this;
- }
- public function removeBill(Bill $bill): self
- {
- if ($this->bills->removeElement($bill)) {
- // set the owning side to null (unless already changed)
- if ($bill->getJvs() === $this) {
- $bill->setJvs(null);
- }
- }
- return $this;
- }
- public function getFile(): ?File
- {
- return $this->file;
- }
- public function setFile(?File $file): self
- {
- $this->file = $file;
- return $this;
- }
- }
|