src/Entity/Media.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MediaRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=MediaRepository::class)
  7.  */
  8. class Media
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255, nullable=true)
  18.      */
  19.     private $uid;
  20.     /**
  21.      * @ORM\Column(type="text", nullable=true)
  22.      */
  23.     private $title;
  24.     /**
  25.      * @ORM\Column(type="text", nullable=true)
  26.      */
  27.     private $url;
  28.     /**
  29.      * @ORM\ManyToOne(targetEntity=Campaign::class, inversedBy="media")
  30.      */
  31.     private $campaign;
  32.     /**
  33.      * @ORM\Column(type="string", length=10, nullable=true)
  34.      */
  35.     private $status;
  36.     /**
  37.      * @ORM\Column(type="integer", nullable=true)
  38.      */
  39.     private $review_by;
  40.     /**
  41.      * @ORM\Column(type="datetime", nullable=true)
  42.      */
  43.     private $review_at;
  44.     /**
  45.      * @ORM\Column(type="text", nullable=true)
  46.      */
  47.     private $admin_comment;
  48.     /**
  49.      * @ORM\Column(type="integer", options={"default" : 0})
  50.      */
  51.     private $impression 0;
  52.     /**
  53.      * @ORM\Column(type="integer", options={"default" : 0})
  54.      */
  55.     private $click 0;
  56.     /**
  57.      * @ORM\Column(type="decimal", scale=3, options={"default" : 0})
  58.      */
  59.     private $ctr 0;
  60.     /**
  61.      * @ORM\Column(type="boolean", options={"default" : false})
  62.      */
  63.     private $auto_active;
  64.     /**
  65.      * @ORM\Column(type="string", length=30, nullable=true)
  66.      */
  67.     private $type;
  68.     /**
  69.      * @ORM\Column(type="string", length=30, nullable=true)
  70.      */
  71.     private $dimension;
  72.     /**
  73.      * @ORM\Column(type="string", length=255, nullable=true)
  74.      */
  75.     private $file;
  76.     /**
  77.      * @ORM\Column(type="string", length=32, nullable=true)
  78.      */
  79.     private $hash;
  80.     /**
  81.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="media")
  82.      * @ORM\JoinColumn(nullable=false)
  83.      */
  84.     private $created_by;
  85.     /**
  86.      * @ORM\Column(type="datetime")
  87.      */
  88.     private $created_at;
  89.     /**
  90.      * @ORM\ManyToOne(targetEntity=User::class)
  91.      */
  92.     private $updated_by;
  93.     /**
  94.      * @ORM\Column(type="datetime", nullable=true)
  95.      */
  96.     private $updated_at;
  97.     public function getId(): ?int
  98.     {
  99.         return $this->id;
  100.     }
  101.     public function getUid(): ?string
  102.     {
  103.         return $this->uid;
  104.     }
  105.     public function setUid(string $uid): self
  106.     {
  107.         $this->uid $uid;
  108.         return $this;
  109.     }
  110.     public function getTitle(): ?string
  111.     {
  112.         return $this->title;
  113.     }
  114.     public function setTitle(?string $title): self
  115.     {
  116.         $this->title $title;
  117.         return $this;
  118.     }
  119.     public function getUrl(): ?string
  120.     {
  121.         return $this->url;
  122.     }
  123.     public function setUrl(?string $url): self
  124.     {
  125.         $this->url $url;
  126.         return $this;
  127.     }
  128.     public function getStatus(): ?string
  129.     {
  130.         return $this->status;
  131.     }
  132.     public function setStatus(?string $status): self
  133.     {
  134.         $this->status $status;
  135.         return $this;
  136.     }
  137.     public function getImpression(): ?int
  138.     {
  139.         return $this->impression;
  140.     }
  141.     public function setImpression(int $impression): self
  142.     {
  143.         $this->impression $impression;
  144.         return $this;
  145.     }
  146.     public function getClick(): ?int
  147.     {
  148.         return $this->click;
  149.     }
  150.     public function setClick(int $click): self
  151.     {
  152.         $this->click $click;
  153.         return $this;
  154.     }
  155.     public function getCtr(): ?float
  156.     {
  157.         return $this->ctr;
  158.     }
  159.     public function setCtr(float $ctr): self
  160.     {
  161.         $this->ctr $ctr;
  162.         return $this;
  163.     }
  164.     public function getAutoActive(): ?bool
  165.     {
  166.         return $this->auto_active;
  167.     }
  168.     public function setAutoActive(bool $auto_active): self
  169.     {
  170.         $this->auto_active $auto_active;
  171.         return $this;
  172.     }
  173.     public function getType(): ?string
  174.     {
  175.         return $this->type;
  176.     }
  177.     public function setType(?string $type): self
  178.     {
  179.         $this->type $type;
  180.         return $this;
  181.     }
  182.     public function getDimension(): ?string
  183.     {
  184.         return $this->dimension;
  185.     }
  186.     public function setDimension(?string $dimension): self
  187.     {
  188.         $this->dimension $dimension;
  189.         return $this;
  190.     }
  191.     public function getFile(): ?string
  192.     {
  193.         return $this->file;
  194.     }
  195.     public function setFile(?string $file): self
  196.     {
  197.         $this->file $file;
  198.         return $this;
  199.     }
  200.     public function getHash(): ?string
  201.     {
  202.         return $this->hash;
  203.     }
  204.     public function setHash(?string $hash): self
  205.     {
  206.         $this->hash $hash;
  207.         return $this;
  208.     }
  209.     public function getCreatedBy(): ?User
  210.     {
  211.         return $this->created_by;
  212.     }
  213.     public function setCreatedBy(?User $created_by): self
  214.     {
  215.         $this->created_by $created_by;
  216.         return $this;
  217.     }
  218.     public function getCreatedAt(): ?\DateTimeInterface
  219.     {
  220.         return $this->created_at;
  221.     }
  222.     public function setCreatedAt(\DateTimeInterface $created_at): self
  223.     {
  224.         $this->created_at $created_at;
  225.         return $this;
  226.     }
  227.     public function getUpdatedBy(): ?User
  228.     {
  229.         return $this->updated_by;
  230.     }
  231.     public function setUpdatedBy(?User $updated_by): self
  232.     {
  233.         $this->updated_by $updated_by;
  234.         return $this;
  235.     }
  236.     public function getUpdatedAt(): ?\DateTimeInterface
  237.     {
  238.         return $this->updated_at;
  239.     }
  240.     public function setUpdatedAt(?\DateTimeInterface $updated_at): self
  241.     {
  242.         $this->updated_at $updated_at;
  243.         return $this;
  244.     }
  245.     public function getCampaign(): ?Campaign
  246.     {
  247.         return $this->campaign;
  248.     }
  249.     public function setCampaign(?Campaign $campaign): self
  250.     {
  251.         $this->campaign $campaign;
  252.         return $this;
  253.     }
  254.     public function getAdminComment(): ?string
  255.     {
  256.         return $this->admin_comment;
  257.     }
  258.     public function setAdminComment(?string $admin_comment): self
  259.     {
  260.         $this->admin_comment $admin_comment;
  261.         return $this;
  262.     }
  263.     public function getReviewBy(): ?int
  264.     {
  265.         return $this->review_by;
  266.     }
  267.     public function setReviewBy(int $review_by): self
  268.     {
  269.         $this->review_by $review_by;
  270.         return $this;
  271.     }
  272.     public function getReviewAt(): ?\DateTimeInterface
  273.     {
  274.         return $this->review_at;
  275.     }
  276.     public function setReviewAt(\DateTimeInterface $review_at): self
  277.     {
  278.         $this->review_at $review_at;
  279.         return $this;
  280.     }
  281. }