src/Entity/Campaign.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CampaignRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=CampaignRepository::class)
  9.  */
  10. class Campaign
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="text", nullable=true)
  20.      */
  21.     private $title;
  22.     /**
  23.      * @ORM\Column(type="string", length=100, nullable=true)
  24.      */
  25.     private $type;
  26.     /**
  27.      * @ORM\Column(type="string", length=100, nullable=true)
  28.      */
  29.     private $device;
  30.     /**
  31.      * @ORM\Column(type="datetime", nullable=true)
  32.      */
  33.     private $start_date;
  34.     /**
  35.      * @ORM\Column(type="datetime", nullable=true)
  36.      */
  37.     private $end_date;
  38.     /**
  39.      * @ORM\Column(type="text", nullable=true)
  40.      */
  41.     private $time_matrix;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      */
  45.     private $utm_medium;
  46.     /**
  47.      * @ORM\Column(type="text", nullable=true)
  48.      */
  49.     private $utm_source;
  50.     /**
  51.      * @ORM\Column(type="text", nullable=true)
  52.      */
  53.     private $utm_campaign;
  54.     /**
  55.      * @ORM\Column(type="string", length=5, nullable=true)
  56.      */
  57.     private $zone;
  58.     /**
  59.      * @ORM\Column(type="string", length=255, nullable=true)
  60.      */
  61.     private $origin;
  62.     /**
  63.      * @ORM\Column(type="text", nullable=true)
  64.      */
  65.     private $origin_name;
  66.     /**
  67.      * @ORM\Column(type="string", length=255, nullable=true)
  68.      */
  69.     private $destination;
  70.     /**
  71.      * @ORM\Column(type="text", nullable=true)
  72.      */
  73.     private $destination_name;
  74.     /**
  75.      * @ORM\Column(type="integer", nullable=true)
  76.      */
  77.     private $bid;
  78.     /**
  79.      * @ORM\Column(type="integer", nullable=true, options={"default" : 0})
  80.      */
  81.     private $daily_budget;
  82.     /**
  83.      * @ORM\Column(type="integer", options={"default" : 0})
  84.      */
  85.     private $daily_spent 0;
  86.     /**
  87.      * @ORM\Column(type="integer", nullable=true, options={"default" : 0})
  88.      */
  89.     private $spent 0;
  90.     /**
  91.      * @ORM\Column(type="integer", options={"default" : 0})
  92.      */
  93.     private $impression 0;
  94.     /**
  95.      * @ORM\Column(type="integer", options={"default" : 0})
  96.      */
  97.     private $click 0;
  98.     /**
  99.      * @ORM\Column(type="decimal", scale=3, options={"default" : 0})
  100.      */
  101.     private $ctr 0;
  102.     /**
  103.      * @ORM\Column(type="string", length=20, nullable=true)
  104.      */
  105.     private $status;
  106.     /**
  107.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="campaigns")
  108.      * @ORM\JoinColumn(nullable=false)
  109.      */
  110.     private $created_by;
  111.     /**
  112.      * @ORM\Column(type="datetime")
  113.      */
  114.     private $created_at;
  115.     /**
  116.      * @ORM\ManyToOne(targetEntity=User::class)
  117.      */
  118.     private $updated_by;
  119.     /**
  120.      * @ORM\Column(type="datetime", nullable=true)
  121.      */
  122.     private $updated_at;
  123.     /**
  124.      * @ORM\OneToMany(targetEntity=Media::class, mappedBy="campaign")
  125.      */
  126.     private $media;
  127.     /**
  128.      * @ORM\Column(type="boolean", options={"default":true})
  129.      */
  130.     private $has_fund;
  131.     /**
  132.      * @ORM\OneToMany(targetEntity=CampaignStat::class, mappedBy="campaign", orphanRemoval=true)
  133.      */
  134.     private $campaignStats;
  135.     public function __construct()
  136.     {
  137.         $this->media = new ArrayCollection();
  138.         $this->campaignStats = new ArrayCollection();
  139.     }
  140.     public function getId(): ?int
  141.     {
  142.         return $this->id;
  143.     }
  144.     public function getTitle(): ?string
  145.     {
  146.         return $this->title;
  147.     }
  148.     public function setTitle(?string $title): self
  149.     {
  150.         $this->title $title;
  151.         return $this;
  152.     }
  153.     public function getType(): ?string
  154.     {
  155.         return $this->type;
  156.     }
  157.     public function setType(?string $type): self
  158.     {
  159.         $this->type $type;
  160.         return $this;
  161.     }
  162.     public function getDevice(): ?string
  163.     {
  164.         return $this->device;
  165.     }
  166.     public function setDevice(?string $device): self
  167.     {
  168.         $this->device $device;
  169.         return $this;
  170.     }
  171.     public function getStartDate(): ?\DateTimeInterface
  172.     {
  173.         return $this->start_date;
  174.     }
  175.     public function setStartDate(?\DateTimeInterface $start_date): self
  176.     {
  177.         $this->start_date $start_date;
  178.         return $this;
  179.     }
  180.     public function getEndDate(): ?\DateTimeInterface
  181.     {
  182.         return $this->end_date;
  183.     }
  184.     public function setEndDate(?\DateTimeInterface $end_date): self
  185.     {
  186.         $this->end_date $end_date;
  187.         return $this;
  188.     }
  189.     public function getTimeMatrix(): ?string
  190.     {
  191.         return $this->time_matrix;
  192.     }
  193.     public function setTimeMatrix(?string $time_matrix): self
  194.     {
  195.         $this->time_matrix $time_matrix;
  196.         return $this;
  197.     }
  198.     public function getUtmMedium(): ?string
  199.     {
  200.         return $this->utm_medium;
  201.     }
  202.     public function setUtmMedium(?string $utm_medium): self
  203.     {
  204.         $this->utm_medium $utm_medium;
  205.         return $this;
  206.     }
  207.     public function getUtmSource(): ?string
  208.     {
  209.         return $this->utm_source;
  210.     }
  211.     public function setUtmSource(?string $utm_source): self
  212.     {
  213.         $this->utm_source $utm_source;
  214.         return $this;
  215.     }
  216.     public function getUtmCampaign(): ?string
  217.     {
  218.         return $this->utm_campaign;
  219.     }
  220.     public function setUtmCampaign(?string $utm_campaign): self
  221.     {
  222.         $this->utm_campaign $utm_campaign;
  223.         return $this;
  224.     }
  225.     public function getZone(): ?string
  226.     {
  227.         return $this->zone;
  228.     }
  229.     public function setZone(?string $zone): self
  230.     {
  231.         $this->zone $zone;
  232.         return $this;
  233.     }
  234.     public function getOrigin(): ?string
  235.     {
  236.         return $this->origin;
  237.     }
  238.     public function setOrigin(?string $origin): self
  239.     {
  240.         $this->origin $origin;
  241.         return $this;
  242.     }
  243.     public function getOriginName(): ?string
  244.     {
  245.         return $this->origin_name;
  246.     }
  247.     public function setOriginName(?string $origin_name): self
  248.     {
  249.         $this->origin_name $origin_name;
  250.         return $this;
  251.     }
  252.     public function getDestination(): ?string
  253.     {
  254.         return $this->destination;
  255.     }
  256.     public function setDestination(?string $destination): self
  257.     {
  258.         $this->destination $destination;
  259.         return $this;
  260.     }
  261.     public function getDestinationName(): ?string
  262.     {
  263.         return $this->destination_name;
  264.     }
  265.     public function setDestinationName(?string $destination_name): self
  266.     {
  267.         $this->destination_name $destination_name;
  268.         return $this;
  269.     }
  270.     public function getBid(): ?int
  271.     {
  272.         return $this->bid;
  273.     }
  274.     public function setBid(?int $bid): self
  275.     {
  276.         $this->bid $bid;
  277.         return $this;
  278.     }
  279.     public function getDailyBudget(): ?int
  280.     {
  281.         return $this->daily_budget;
  282.     }
  283.     public function setDailyBudget(?int $daily_budget): self
  284.     {
  285.         $this->daily_budget $daily_budget;
  286.         return $this;
  287.     }
  288.     public function getSpent(): ?int
  289.     {
  290.         return $this->spent;
  291.     }
  292.     public function setSpent(?int $spent): self
  293.     {
  294.         $this->spent $spent;
  295.         return $this;
  296.     }
  297.     public function getImpression(): ?int
  298.     {
  299.         return $this->impression;
  300.     }
  301.     public function setImpression(int $impression): self
  302.     {
  303.         $this->impression $impression;
  304.         return $this;
  305.     }
  306.     public function getClick(): ?int
  307.     {
  308.         return $this->click;
  309.     }
  310.     public function setClick(int $click): self
  311.     {
  312.         $this->click $click;
  313.         return $this;
  314.     }
  315.     public function getStatus(): ?string
  316.     {
  317.         return $this->status;
  318.     }
  319.     public function setStatus(?string $status): self
  320.     {
  321.         $this->status $status;
  322.         return $this;
  323.     }
  324.     public function getCreatedBy(): ?User
  325.     {
  326.         return $this->created_by;
  327.     }
  328.     public function setCreatedBy(?User $created_by): self
  329.     {
  330.         $this->created_by $created_by;
  331.         return $this;
  332.     }
  333.     public function getCreatedAt(): ?\DateTimeInterface
  334.     {
  335.         return $this->created_at;
  336.     }
  337.     public function setCreatedAt(\DateTimeInterface $created_at): self
  338.     {
  339.         $this->created_at $created_at;
  340.         return $this;
  341.     }
  342.     public function getUpdatedBy(): ?User
  343.     {
  344.         return $this->updated_by;
  345.     }
  346.     public function setUpdatedBy(?User $updated_by): self
  347.     {
  348.         $this->updated_by $updated_by;
  349.         return $this;
  350.     }
  351.     public function getUpdatedAt(): ?\DateTimeInterface
  352.     {
  353.         return $this->updated_at;
  354.     }
  355.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  356.     {
  357.         $this->updated_at $updated_at;
  358.         return $this;
  359.     }
  360.     /**
  361.      * @return Collection|Media[]
  362.      */
  363.     public function getMedia(): Collection
  364.     {
  365.         return $this->media;
  366.     }
  367.     public function addMedium(Media $medium): self
  368.     {
  369.         if (!$this->media->contains($medium)) {
  370.             $this->media[] = $medium;
  371.             $medium->setCampaign($this);
  372.         }
  373.         return $this;
  374.     }
  375.     public function removeMedium(Media $medium): self
  376.     {
  377.         if ($this->media->removeElement($medium)) {
  378.             // set the owning side to null (unless already changed)
  379.             if ($medium->getCampaign() === $this) {
  380.                 $medium->setCampaign(null);
  381.             }
  382.         }
  383.         return $this;
  384.     }
  385.     public function getDailySpent(): ?int
  386.     {
  387.         return $this->daily_spent;
  388.     }
  389.     public function setDailySpent(int $daily_spent): self
  390.     {
  391.         $this->daily_spent $daily_spent;
  392.         return $this;
  393.     }
  394.     public function getCtr(): ?float
  395.     {
  396.         return $this->ctr;
  397.     }
  398.     public function setCtr(float $ctr): self
  399.     {
  400.         $this->ctr $ctr;
  401.         return $this;
  402.     }
  403.     public function getHasFund(): ?bool
  404.     {
  405.         return $this->has_fund;
  406.     }
  407.     public function setHasFund(bool $has_fund true): self
  408.     {
  409.         $this->has_fund $has_fund;
  410.         return $this;
  411.     }
  412.     /**
  413.      * @return Collection|CampaignStat[]
  414.      */
  415.     public function getCampaignStats(): Collection
  416.     {
  417.         return $this->campaignStats;
  418.     }
  419.     public function addCampaignStat(CampaignStat $campaignStat): self
  420.     {
  421.         if (!$this->campaignStats->contains($campaignStat)) {
  422.             $this->campaignStats[] = $campaignStat;
  423.             $campaignStat->setCampaign($this);
  424.         }
  425.         return $this;
  426.     }
  427.     public function removeCampaignStat(CampaignStat $campaignStat): self
  428.     {
  429.         if ($this->campaignStats->removeElement($campaignStat)) {
  430.             // set the owning side to null (unless already changed)
  431.             if ($campaignStat->getCampaign() === $this) {
  432.                 $campaignStat->setCampaign(null);
  433.             }
  434.         }
  435.         return $this;
  436.     }
  437. }