src/Entity/Scrapers/AggPidUiView.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Scrapers;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(readOnly=true)
  6.  * @ORM\Table(name="agg_pid_ui_view")
  7.  */
  8. class AggPidUiView
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\Column(type="string", length=255)
  13.      */
  14.     private $globalReportsId;
  15.     /**
  16.      * @ORM\Column(type="integer", options={"unsigned": true})
  17.      */
  18.     private $puiInstalls;
  19.     /**
  20.      * @ORM\Column(type="integer", options={"unsigned": true})
  21.      */
  22.     private $puiImpressions;
  23.     /**
  24.      * @ORM\Column(type="integer", options={"unsigned": true})
  25.      */
  26.     private $puiClicks;
  27.     /**
  28.      * @ORM\Column(type="decimal", precision=10, scale=2)
  29.      */
  30.     private $puiRevenue;
  31.     // --- Getters ---
  32.     public function getGlobalReportsId(): ?string
  33.     {
  34.         return $this->globalReportsId;
  35.     }
  36.     public function getPuiInstalls(): ?int
  37.     {
  38.         return $this->puiInstalls;
  39.     }
  40.     public function getPuiImpressions(): ?int
  41.     {
  42.         return $this->puiImpressions;
  43.     }
  44.     public function getPuiClicks(): ?int
  45.     {
  46.         return $this->puiClicks;
  47.     }
  48.     public function getPuiRevenue(): ?string
  49.     {
  50.         return $this->puiRevenue;
  51.     }
  52. }