src/Entity/FilmProjectFunding.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FilmProjectFundingRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassFilmProjectFundingRepository::class)]
  6. class FilmProjectFunding
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'float'nullabletrue)]
  13.     private $developmentBudget;
  14.     #[ORM\Column(type'float'nullabletrue)]
  15.     private $productionBudget;
  16.     #[ORM\Column(type'float'nullabletrue)]
  17.     private $postProductionBudget;
  18.     #[ORM\Column(type'float'nullabletrue)]
  19.     private $outreach;
  20.     #[ORM\Column(type'float'nullabletrue)]
  21.     private $screenAgencies;
  22.     #[ORM\Column(type'float'nullabletrue)]
  23.     private $government;
  24.     #[ORM\Column(type'float'nullabletrue)]
  25.     private $corporate;
  26.     #[ORM\Column(type'float'nullabletrue)]
  27.     private $philantrophy;
  28.     #[ORM\Column(type'float'nullabletrue)]
  29.     private $crownfunding;
  30.     #[ORM\Column(type'float'nullabletrue)]
  31.     private $otherBudget;
  32.     #[ORM\Column(type'text'nullabletrue)]
  33.     private $funderList;
  34.     #[ORM\Column(type'text'nullabletrue)]
  35.     private $fundraisingStrategy;
  36.     #[ORM\Column(type'float'nullabletrue)]
  37.     private $fundraisingGoal;
  38.     #[ORM\Column(type'string'length255nullabletrue)]
  39.     private $campaignEndMethod;
  40.     #[ORM\Column(type'array'nullabletrue)]
  41.     private $heardFrom = [];
  42.     #[ORM\Column(type'boolean'nullabletrue)]
  43.     private $approvedFiscal;
  44.     #[ORM\Column(type'string'length255nullabletrue)]
  45.     private $fiscalSponsorshipProject;
  46.     #[ORM\OneToOne(inversedBy'filmProjectFunding'targetEntityFilmProject::class, cascade: ['persist''remove'])]
  47.     private $filmProject;
  48.     #[ORM\Column(type'float'nullabletrue)]
  49.     private $totalBudget;
  50.     #[ORM\Column(nullabletrue)]
  51.     private ?bool $isPreviouslySubmitted null;
  52.     #[ORM\Column(nullabletrue)]
  53.     private ?bool $isConfirmedSupportPublic null;
  54.     #[ORM\Column(length255nullabletrue)]
  55.     private ?string $previouslySubmittedYear null;
  56.     public function getId(): ?int
  57.     {
  58.         return $this->id;
  59.     }
  60.     public function getDevelopmentBudget(): ?float
  61.     {
  62.         return $this->developmentBudget;
  63.     }
  64.     public function setDevelopmentBudget(?float $developmentBudget): self
  65.     {
  66.         $this->developmentBudget $developmentBudget;
  67.         return $this;
  68.     }
  69.     public function getProductionBudget(): ?float
  70.     {
  71.         return $this->productionBudget;
  72.     }
  73.     public function setProductionBudget(?float $productionBudget): self
  74.     {
  75.         $this->productionBudget $productionBudget;
  76.         return $this;
  77.     }
  78.     public function getPostProductionBudget(): ?float
  79.     {
  80.         return $this->postProductionBudget;
  81.     }
  82.     public function setPostProductionBudget(?float $postProductionBudget): self
  83.     {
  84.         $this->postProductionBudget $postProductionBudget;
  85.         return $this;
  86.     }
  87.     public function getOutreach(): ?float
  88.     {
  89.         return $this->outreach;
  90.     }
  91.     public function setOutreach(?float $outreach): self
  92.     {
  93.         $this->outreach $outreach;
  94.         return $this;
  95.     }
  96.     public function getScreenAgencies(): ?float
  97.     {
  98.         return $this->screenAgencies;
  99.     }
  100.     public function setScreenAgencies(?float $screenAgencies): self
  101.     {
  102.         $this->screenAgencies $screenAgencies;
  103.         return $this;
  104.     }
  105.     public function getGovernment(): ?float
  106.     {
  107.         return $this->government;
  108.     }
  109.     public function setGovernment(?float $government): self
  110.     {
  111.         $this->government $government;
  112.         return $this;
  113.     }
  114.     public function getCorporate(): ?float
  115.     {
  116.         return $this->corporate;
  117.     }
  118.     public function setCorporate(?float $corporate): self
  119.     {
  120.         $this->corporate $corporate;
  121.         return $this;
  122.     }
  123.     public function getPhilantrophy(): ?float
  124.     {
  125.         return $this->philantrophy;
  126.     }
  127.     public function setPhilantrophy(?float $philantrophy): self
  128.     {
  129.         $this->philantrophy $philantrophy;
  130.         return $this;
  131.     }
  132.     public function getCrownfunding(): ?float
  133.     {
  134.         return $this->crownfunding;
  135.     }
  136.     public function setCrownfunding(?float $crownfunding): self
  137.     {
  138.         $this->crownfunding $crownfunding;
  139.         return $this;
  140.     }
  141.     public function getOtherBudget(): ?float
  142.     {
  143.         return $this->otherBudget;
  144.     }
  145.     public function setOtherBudget(?float $otherBudget): self
  146.     {
  147.         $this->otherBudget $otherBudget;
  148.         return $this;
  149.     }
  150.     public function getFunderList(): ?string
  151.     {
  152.         return $this->funderList;
  153.     }
  154.     public function setFunderList(?string $funderList): self
  155.     {
  156.         $this->funderList $funderList;
  157.         return $this;
  158.     }
  159.     public function getFundraisingStrategy(): ?string
  160.     {
  161.         return $this->fundraisingStrategy;
  162.     }
  163.     public function setFundraisingStrategy(?string $fundraisingStrategy): self
  164.     {
  165.         $this->fundraisingStrategy $fundraisingStrategy;
  166.         return $this;
  167.     }
  168.     public function getFundraisingGoal(): ?float
  169.     {
  170.         return $this->fundraisingGoal;
  171.     }
  172.     public function setFundraisingGoal(?float $fundraisingGoal): self
  173.     {
  174.         $this->fundraisingGoal $fundraisingGoal;
  175.         return $this;
  176.     }
  177.     public function getCampaignEndMethod(): ?string
  178.     {
  179.         return $this->campaignEndMethod;
  180.     }
  181.     public function setCampaignEndMethod(?string $campaignEndMethod): self
  182.     {
  183.         $this->campaignEndMethod $campaignEndMethod;
  184.         return $this;
  185.     }
  186.     public function getHeardFrom(): ?array
  187.     {
  188.         return $this->heardFrom;
  189.     }
  190.     public function setHeardFrom(?array $heardFrom): self
  191.     {
  192.         $this->heardFrom $heardFrom;
  193.         return $this;
  194.     }
  195.     public function isApprovedFiscal(): ?bool
  196.     {
  197.         return $this->approvedFiscal;
  198.     }
  199.     public function setApprovedFiscal(?bool $approvedFiscal): self
  200.     {
  201.         $this->approvedFiscal $approvedFiscal;
  202.         return $this;
  203.     }
  204.     public function getFiscalSponsorshipProject(): ?string
  205.     {
  206.         return $this->fiscalSponsorshipProject;
  207.     }
  208.     public function setFiscalSponsorshipProject(?string $fiscalSponsorshipProject): self
  209.     {
  210.         $this->fiscalSponsorshipProject $fiscalSponsorshipProject;
  211.         return $this;
  212.     }
  213.     public function getFilmProject(): ?FilmProject
  214.     {
  215.         return $this->filmProject;
  216.     }
  217.     public function setFilmProject(?FilmProject $filmProject): self
  218.     {
  219.         $this->filmProject $filmProject;
  220.         return $this;
  221.     }
  222.     public function getTotalBudget(): ?float
  223.     {
  224.         return $this->totalBudget;
  225.     }
  226.     public function setTotalBudget(float $totalBudget): self
  227.     {
  228.         $this->totalBudget $totalBudget;
  229.         return $this;
  230.     }
  231.     public function isIsPreviouslySubmitted(): ?bool
  232.     {
  233.         return $this->isPreviouslySubmitted;
  234.     }
  235.     public function setIsPreviouslySubmitted(?bool $isPreviouslySubmitted): self
  236.     {
  237.         $this->isPreviouslySubmitted $isPreviouslySubmitted;
  238.         return $this;
  239.     }
  240.     public function isIsConfirmedSupportPublic(): ?bool
  241.     {
  242.         return $this->isConfirmedSupportPublic;
  243.     }
  244.     public function setIsConfirmedSupportPublic(?bool $isConfirmedSupportPublic): self
  245.     {
  246.         $this->isConfirmedSupportPublic $isConfirmedSupportPublic;
  247.         return $this;
  248.     }
  249.     public function getPreviouslySubmittedYear(): ?string
  250.     {
  251.         return $this->previouslySubmittedYear;
  252.     }
  253.     public function setPreviouslySubmittedYear(?string $previouslySubmittedYear): self
  254.     {
  255.         $this->previouslySubmittedYear $previouslySubmittedYear;
  256.         return $this;
  257.     }
  258. }