src/Entity/Gos/OrderTeleConsultant.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Gos;
  3. use App\Repository\Gos\OrderTeleConsultantRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=OrderTeleConsultantRepository::class)
  7.  */
  8. class OrderTeleConsultant
  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)
  18.      */
  19.     private $rid;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $phone;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $firstName;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $lastName;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $team;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private $email;
  40.     public function getId(): ?int
  41.     {
  42.         return $this->id;
  43.     }
  44.     public function getRid(): ?string
  45.     {
  46.         return $this->rid;
  47.     }
  48.     public function setRid(string $rid): self
  49.     {
  50.         $this->rid $rid;
  51.         return $this;
  52.     }
  53.     public function getPhone(): ?string
  54.     {
  55.         return $this->phone;
  56.     }
  57.     public function setPhone(string $phone): self
  58.     {
  59.         $this->phone $phone;
  60.         return $this;
  61.     }
  62.     public function getFirstName(): ?string
  63.     {
  64.         return $this->firstName;
  65.     }
  66.     public function setFirstName(?string $firstName): self
  67.     {
  68.         $this->firstName $firstName;
  69.         return $this;
  70.     }
  71.     public function getLastName(): ?string
  72.     {
  73.         return $this->lastName;
  74.     }
  75.     public function setLastName(?string $lastName): self
  76.     {
  77.         $this->lastName $lastName;
  78.         return $this;
  79.     }
  80.     public function getTeam(): ?string
  81.     {
  82.         return $this->team;
  83.     }
  84.     public function setTeam(?string $team): self
  85.     {
  86.         $this->team $team;
  87.         return $this;
  88.     }
  89.     public function getEmail(): ?string
  90.     {
  91.         return $this->email;
  92.     }
  93.     public function setEmail(?string $email): self
  94.     {
  95.         $this->email $email;
  96.         return $this;
  97.     }
  98. }