src/Entity/CampaignStat.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CampaignStatRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=CampaignStatRepository::class)
  7.  */
  8. class CampaignStat
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="bigint")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Campaign::class, inversedBy="campaignStats")
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $campaign;
  21.     /**
  22.      * @ORM\Column(type="string", length=10)
  23.      */
  24.     private $date;
  25.     /**
  26.      * @ORM\Column(type="string", length=255, unique=true)
  27.      */
  28.     private $stat_id;
  29.     /**
  30.      * @ORM\Column(type="integer", options={"default":0})
  31.      */
  32.     private $impression;
  33.     /**
  34.      * @ORM\Column(type="integer", options={"default":0})
  35.      */
  36.     private $click;
  37.     /**
  38.      * @ORM\Column(type="decimal", scale=3, options={"default":0})
  39.      */
  40.     private $ctr;
  41.     /**
  42.      * @ORM\Column(type="datetime", nullable=true)
  43.      */
  44.     private $created_at;
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getCampaign(): ?Campaign
  50.     {
  51.         return $this->campaign;
  52.     }
  53.     public function setCampaign(?Campaign $campaign): self
  54.     {
  55.         $this->campaign $campaign;
  56.         return $this;
  57.     }
  58.     public function getDate(): ?string
  59.     {
  60.         return $this->date;
  61.     }
  62.     public function setDate(string $date): self
  63.     {
  64.         $this->date $date;
  65.         return $this;
  66.     }
  67.     public function getStatId(): ?string
  68.     {
  69.         return $this->stat_id;
  70.     }
  71.     public function setStatId(string $stat_id): self
  72.     {
  73.         $this->stat_id $stat_id;
  74.         return $this;
  75.     }
  76.     public function getImpression(): ?int
  77.     {
  78.         return $this->impression;
  79.     }
  80.     public function setImpression(int $impression 0): self
  81.     {
  82.         $this->impression $impression;
  83.         return $this;
  84.     }
  85.     public function getClick(): ?int
  86.     {
  87.         return $this->click;
  88.     }
  89.     public function setClick(int $click 0): self
  90.     {
  91.         $this->click $click;
  92.         return $this;
  93.     }
  94.     public function getCtr(): ?float
  95.     {
  96.         return $this->ctr;
  97.     }
  98.     public function setCtr(float $ctr 0): self
  99.     {
  100.         $this->ctr $ctr;
  101.         return $this;
  102.     }
  103.     public function getCreatedAt(): ?\DateTimeInterface
  104.     {
  105.         return $this->created_at;
  106.     }
  107.     public function setCreatedAt(?\DateTimeInterface $created_at): self
  108.     {
  109.         $this->created_at $created_at;
  110.         return $this;
  111.     }
  112. }