src/Entity/LepServiceOnlineRecord.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\LepServiceOnlineRecordRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassLepServiceOnlineRecordRepository::class)]
  7. #[ApiResource]
  8. class LepServiceOnlineRecord
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length50)]
  15.     private ?string $request_id null;
  16.     #[ORM\Column(length10)]
  17.     private ?string $persuid null;
  18.     #[ORM\Column(length50)]
  19.     private ?string $service_name null;
  20.     #[ORM\Column(length13)]
  21.     private ?string $phone null;
  22.     #[ORM\Column(length1500)]
  23.     private ?string $files null;
  24.     #[ORM\Column(length5000)]
  25.     private ?string $data_user null;
  26.     #[ORM\Column(length20)]
  27.     private ?string $number_ap null;
  28.     #[ORM\Column(length50)]
  29.     private ?string $sms_kod null;
  30.     #[ORM\Column(length10)]
  31.     private ?string $osr null;
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getRequestId(): ?string
  37.     {
  38.         return $this->request_id;
  39.     }
  40.     public function setRequestId(string $request_id): self
  41.     {
  42.         $this->request_id $request_id;
  43.         return $this;
  44.     }
  45.     public function getPersuid(): ?string
  46.     {
  47.         return $this->persuid;
  48.     }
  49.     public function setPersuid(string $persuid): self
  50.     {
  51.         $this->persuid $persuid;
  52.         return $this;
  53.     }
  54.     public function getServiceName(): ?string
  55.     {
  56.         return $this->service_name;
  57.     }
  58.     public function setServiceName(string $service_name): self
  59.     {
  60.         $this->service_name $service_name;
  61.         return $this;
  62.     }
  63.     public function getPhone(): ?string
  64.     {
  65.         return $this->phone;
  66.     }
  67.     public function setPhone(string $phone): self
  68.     {
  69.         $this->phone $phone;
  70.         return $this;
  71.     }
  72.     public function getFiles(): ?string
  73.     {
  74.         return $this->files;
  75.     }
  76.     public function setFiles(string $files): self
  77.     {
  78.         $this->files $files;
  79.         return $this;
  80.     }
  81.     public function getDataUser(): ?string
  82.     {
  83.         return $this->data_user;
  84.     }
  85.     public function setDataUser(string $data_user): self
  86.     {
  87.         $this->data_user $data_user;
  88.         return $this;
  89.     }
  90.     public function getNumberAp(): ?string
  91.     {
  92.         return $this->number_ap;
  93.     }
  94.     public function setNumberAp(string $number_ap): self
  95.     {
  96.         $this->number_ap $number_ap;
  97.         return $this;
  98.     }
  99.     public function getSmsKod(): ?string
  100.     {
  101.         return $this->sms_kod;
  102.     }
  103.     public function setSmsKod(string $sms_kod): self
  104.     {
  105.         $this->sms_kod $sms_kod;
  106.         return $this;
  107.     }
  108.     public function getOsr(): ?string
  109.     {
  110.         return $this->osr;
  111.     }
  112.     public function setOsr(string $osr): self
  113.     {
  114.         $this->osr $osr;
  115.         return $this;
  116.     }
  117. }