| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- declare(strict_types=1);
- namespace App\Entity\Billing;
- use ApiPlatform\Metadata\ApiResource;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * TODO: documenter.
- */
- #[ApiResource(operations: [])]
- #[ORM\Entity]
- class BillScheduleDate
- {
- #[ORM\Id]
- #[ORM\Column]
- #[ORM\GeneratedValue]
- private int $id;
- #[ORM\ManyToOne(targetEntity: BillSchedule::class, cascade: ['persist'], inversedBy: 'scheduleDates')]
- #[ORM\JoinColumn(referencedColumnName: 'id', nullable: true, onDelete: 'SET NULL')]
- protected mixed $billSchedule;
- public function getId(): int
- {
- return $this->id;
- }
- public function setId(int $id): self
- {
- $this->id = $id;
- return $this;
- }
- public function getBillSchedule(): mixed
- {
- return $this->billSchedule;
- }
- public function setBillSchedule(mixed $billSchedule): self
- {
- $this->billSchedule = $billSchedule;
- return $this;
- }
- }
|