src/Entity/MessageEntity.php line 13

  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. /**
  7.  * @ORM\Entity
  8.  * @ORM\Table(name="messages")
  9.  */
  10. class MessageEntity
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\Column(type="integer")
  15.      * @ORM\GeneratedValue(strategy="AUTO")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $message;
  22.     /**
  23.      * @ORM\Column(type="date")
  24.      */
  25.     private $date;
  26.     /**
  27.      * @ORM\Column(type="string", length=20)
  28.      */
  29.     private $phone;
  30.     /**
  31.      * @ORM\Column(type="integer", length=2)
  32.      */
  33.     private $status 1;
  34.     /**
  35.      * @ORM\ManyToOne(targetEntity="UserEntity", inversedBy="messages")
  36.      * @ORM\JoinColumn(nullable=false)
  37.      */
  38.     private $user;
  39.     public function getUser(): ?UserEntity
  40.     {
  41.         return $this->user;
  42.     }
  43.     public function setUser(?UserEntity $user): self
  44.     {
  45.         $this->user $user;
  46.         return $this;
  47.     }
  48.     public function getId(): ?int
  49.     {
  50.         return $this->id;
  51.     }
  52.     public function setId(int $id): self
  53.     {
  54.         $this->id $id;
  55.         return $this;
  56.     }
  57.     public function getMessage(): ?string
  58.     {
  59.         return $this->message;
  60.     }
  61.     public function setMessage(string $message): self
  62.     {
  63.         $this->message $message;
  64.         return $this;
  65.     }
  66.     public function getDate(): ?\DateTimeInterface
  67.     {
  68.         return $this->date;
  69.     }
  70.     public function setDate(\DateTimeInterface $date): self
  71.     {
  72.         $this->date $date;
  73.         return $this;
  74.     }
  75.     public function getPhone(): ?int
  76.     {
  77.         return $this->phone;
  78.     }
  79.     public function setPhone(int $phone): self
  80.     {
  81.         $this->phone $phone;
  82.         return $this;
  83.     }
  84.     public function getStatus(): ?int
  85.     {
  86.         return $this->status;
  87.     }
  88.     public function setStatus(int $status): self
  89.     {
  90.         $this->status $status;
  91.         return $this;
  92.     }
  93. }