src/Entity/FilmProjectFunding.php line 11

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