src/Entity/PayrollExport.php line 10
<?phpnamespace App\Entity;use App\Repository\PayrollExportRepository;use Doctrine\ORM\Mapping as ORM;use Gedmo\Timestampable\Traits\TimestampableEntity;#[ORM\Entity(repositoryClass: PayrollExportRepository::class)]class PayrollExport{use TimestampableEntity;#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\ManyToOne]#[ORM\JoinColumn(nullable: false)]private ?PaymentPeriod $paymentPeriod = null;#[ORM\Column(length: 255)]private ?string $fileName = null;#[ORM\Column(length: 255, nullable: true)]private ?string $userFileName = null;public function getId(): ?int{return $this->id;}public function getPaymentPeriod(): ?PaymentPeriod{return $this->paymentPeriod;}public function setPaymentPeriod(?PaymentPeriod $paymentPeriod): self{$this->paymentPeriod = $paymentPeriod;return $this;}public function getFileName(): ?string{return $this->fileName;}public function setFileName(string $fileName): self{$this->fileName = $fileName;return $this;}public function getUserFileName(): ?string{return $this->userFileName;}public function setUserFileName(?string $userFileName): self{$this->userFileName = $userFileName;return $this;}}