src/Entity/Analytics.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AnalyticsRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Bridge\Doctrine\IdGenerator\UuidGenerator;
  7. #[ORM\Entity(repositoryClassAnalyticsRepository::class)]
  8. class Analytics extends BaseEntity
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue(strategy'CUSTOM')]
  12.     #[ORM\CustomIdGenerator(class: UuidGenerator::class)]
  13.     #[ORM\Column(type'guid'uniquetrue)]
  14.     private ?string $id null;
  15.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  16.     private ?\DateTimeInterface $date null;
  17.     #[ORM\Column(typeTypes::BIGINT)]
  18.     private ?string $walletIncrease null;
  19.     #[ORM\Column(typeTypes::BIGINT)]
  20.     private ?string $boughtService null;
  21.     #[ORM\Column]
  22.     private ?int $v2ray null;
  23.     #[ORM\Column]
  24.     private ?int $open null;
  25.     #[ORM\Column]
  26.     private ?int $ocServ null;
  27.     #[ORM\Column]
  28.     private ?int $vip null;
  29.     #[ORM\Column(typeTypes::BIGINTnullabletrue)]
  30.     private ?string $boughtVolume null;
  31.     #[ORM\Column(typeTypes::BIGINTnullabletrue)]
  32.     private ?string $v2rayUnlimited null;
  33.     #[ORM\Column(typeTypes::BIGINTnullabletrue)]
  34.     private ?string $openUnlimited null;
  35.     #[ORM\Column(typeTypes::BIGINTnullabletrue)]
  36.     private ?string $ocServUnlimited null;
  37.     public function getId(): ?string
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getDate(): ?\DateTimeInterface
  42.     {
  43.         return $this->date;
  44.     }
  45.     public function setDate(\DateTimeInterface $date): self
  46.     {
  47.         $this->date $date;
  48.         return $this;
  49.     }
  50.     public function getWalletIncrease(): ?string
  51.     {
  52.         return $this->walletIncrease;
  53.     }
  54.     public function setWalletIncrease(string $walletIncrease): self
  55.     {
  56.         $this->walletIncrease $walletIncrease;
  57.         return $this;
  58.     }
  59.     public function getBoughtService(): ?string
  60.     {
  61.         return $this->boughtService;
  62.     }
  63.     public function setBoughtService(string $boughtService): self
  64.     {
  65.         $this->boughtService $boughtService;
  66.         return $this;
  67.     }
  68.     public function getV2ray(): ?int
  69.     {
  70.         return $this->v2ray;
  71.     }
  72.     public function setV2ray(int $v2ray): self
  73.     {
  74.         $this->v2ray $v2ray;
  75.         return $this;
  76.     }
  77.     public function getOpen(): ?int
  78.     {
  79.         return $this->open;
  80.     }
  81.     public function setOpen(int $open): self
  82.     {
  83.         $this->open $open;
  84.         return $this;
  85.     }
  86.     public function getOcServ(): ?int
  87.     {
  88.         return $this->ocServ;
  89.     }
  90.     public function setOcServ(int $ocServ): self
  91.     {
  92.         $this->ocServ $ocServ;
  93.         return $this;
  94.     }
  95.     public function getVip(): ?int
  96.     {
  97.         return $this->vip;
  98.     }
  99.     public function setVip(int $vip): self
  100.     {
  101.         $this->vip $vip;
  102.         return $this;
  103.     }
  104.     public function getBoughtVolume(): ?string
  105.     {
  106.         return $this->boughtVolume;
  107.     }
  108.     public function setBoughtVolume(?string $boughtVolume): static
  109.     {
  110.         $this->boughtVolume $boughtVolume;
  111.         return $this;
  112.     }
  113.     public function getV2rayUnlimited(): ?string
  114.     {
  115.         return $this->v2rayUnlimited;
  116.     }
  117.     public function setV2rayUnlimited(?string $v2rayUnlimited): static
  118.     {
  119.         $this->v2rayUnlimited $v2rayUnlimited;
  120.         return $this;
  121.     }
  122.     public function getOpenUnlimited(): ?string
  123.     {
  124.         return $this->openUnlimited;
  125.     }
  126.     public function setOpenUnlimited(?string $openUnlimited): static
  127.     {
  128.         $this->openUnlimited $openUnlimited;
  129.         return $this;
  130.     }
  131.     public function getOcServUnlimited(): ?string
  132.     {
  133.         return $this->ocServUnlimited;
  134.     }
  135.     public function setOcServUnlimited(?string $ocServUnlimited): static
  136.     {
  137.         $this->ocServUnlimited $ocServUnlimited;
  138.         return $this;
  139.     }
  140. }