src/Entity/Feedback.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FeedbackRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=FeedbackRepository::class)
  7.  */
  8. class Feedback
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer", nullable=true)
  18.      */
  19.     private $rating;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $tujuan;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $sektor;
  28.     /**
  29.      * @ORM\Column(type="boolean", nullable=true)
  30.      */
  31.     public $is_found;
  32.     /**
  33.      * @ORM\Column(type="boolean", nullable=true)
  34.      */
  35.     public $mudah_ditemukan;
  36.     /**
  37.      * @ORM\Column(type="text", nullable=true)
  38.      */
  39.     private $kendala;
  40.     /**
  41.      * @ORM\Column(type="text", nullable=true)
  42.      */
  43.     private $saran;
  44.     /**
  45.      * @ORM\Column(type="datetime", nullable=true)
  46.      */
  47.     public $created_at;
  48.     public function getId(): ?int
  49.     {
  50.         return $this->id;
  51.     }
  52.     public function getRating(): ?int
  53.     {
  54.         return $this->rating;
  55.     }
  56.     public function setRating(?int $rating): self
  57.     {
  58.         $this->rating $rating;
  59.         return $this;
  60.     }
  61.     public function getTujuan(): ?string
  62.     {
  63.         return $this->tujuan;
  64.     }
  65.     public function setTujuan(?string $tujuan): self
  66.     {
  67.         $this->tujuan $tujuan;
  68.         return $this;
  69.     }
  70.     public function getSektor(): ?string
  71.     {
  72.         return $this->sektor;
  73.     }
  74.     public function setSektor(?string $sektor): self
  75.     {
  76.         $this->sektor $sektor;
  77.         return $this;
  78.     }
  79.     public function getIsFound(): ?bool
  80.     {
  81.         return $this->is_found;
  82.     }
  83.     public function setIsFound(?bool $is_found): self
  84.     {
  85.         $this->is_found $is_found;
  86.         return $this;
  87.     }
  88.     public function getMudahDitemukan(): ?bool
  89.     {
  90.         return $this->mudah_ditemukan;
  91.     }
  92.     public function setMudahDitemukan(?bool $mudah_ditemukan): self
  93.     {
  94.         $this->mudah_ditemukan $mudah_ditemukan;
  95.         return $this;
  96.     }
  97.     public function getKendala(): ?string
  98.     {
  99.         return $this->kendala;
  100.     }
  101.     public function setKendala(?string $kendala): self
  102.     {
  103.         $this->kendala $kendala;
  104.         return $this;
  105.     }
  106.     public function getSaran(): ?string
  107.     {
  108.         return $this->saran;
  109.     }
  110.     public function setSaran(?string $saran): self
  111.     {
  112.         $this->saran $saran;
  113.         return $this;
  114.     }
  115.     public function getCreatedAt(): ?\DateTimeInterface
  116.     {
  117.         return $this->created_at;
  118.     }
  119.     public function setCreatedAt(?\DateTimeInterface $created_at): self
  120.     {
  121.         $this->created_at $created_at;
  122.         return $this;
  123.     }
  124. }