<?php
namespace App\Entity;
use App\Repository\PodcastPrivateAccountingFirmRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: PodcastPrivateAccountingFirmRepository::class)]
class PodcastPrivateAccountingFirm
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\ManyToOne(targetEntity: PodcastPrivate::class, inversedBy: 'podcastPrivateAccountingFirms')]
private $podcastPrivate;
#[ORM\ManyToOne(targetEntity: AccountingFirm::class, inversedBy: 'podcastPrivateAccountingFirms')]
private $accountingFirm;
#[ORM\Column(type: 'string', length: 255)]
private $filename;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $idAusha;
public function getId(): ?int
{
return $this->id;
}
public function getPodcastPrivate(): ?PodcastPrivate
{
return $this->podcastPrivate;
}
public function setPodcastPrivate(?PodcastPrivate $podcastPrivate): self
{
$this->podcastPrivate = $podcastPrivate;
return $this;
}
public function getAccountingFirm(): ?AccountingFirm
{
return $this->accountingFirm;
}
public function setAccountingFirm(?AccountingFirm $accountingFirm): self
{
$this->accountingFirm = $accountingFirm;
return $this;
}
public function getFilename(): ?string
{
return $this->filename;
}
public function setFilename(string $filename): self
{
$this->filename = $filename;
return $this;
}
public function getIdAusha(): ?string
{
return $this->idAusha;
}
public function setIdAusha(?string $idAusha): self
{
$this->idAusha = $idAusha;
return $this;
}
}