<?php
namespace App\Entity;
use ApiPlatform\Metadata\ApiResource;
use App\Repository\LepServiceOnlineRecordRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: LepServiceOnlineRecordRepository::class)]
#[ApiResource]
class LepServiceOnlineRecord
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 50)]
private ?string $request_id = null;
#[ORM\Column(length: 10)]
private ?string $persuid = null;
#[ORM\Column(length: 50)]
private ?string $service_name = null;
#[ORM\Column(length: 13)]
private ?string $phone = null;
#[ORM\Column(length: 1500)]
private ?string $files = null;
#[ORM\Column(length: 5000)]
private ?string $data_user = null;
#[ORM\Column(length: 20)]
private ?string $number_ap = null;
#[ORM\Column(length: 50)]
private ?string $sms_kod = null;
#[ORM\Column(length: 10)]
private ?string $osr = null;
public function getId(): ?int
{
return $this->id;
}
public function getRequestId(): ?string
{
return $this->request_id;
}
public function setRequestId(string $request_id): self
{
$this->request_id = $request_id;
return $this;
}
public function getPersuid(): ?string
{
return $this->persuid;
}
public function setPersuid(string $persuid): self
{
$this->persuid = $persuid;
return $this;
}
public function getServiceName(): ?string
{
return $this->service_name;
}
public function setServiceName(string $service_name): self
{
$this->service_name = $service_name;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(string $phone): self
{
$this->phone = $phone;
return $this;
}
public function getFiles(): ?string
{
return $this->files;
}
public function setFiles(string $files): self
{
$this->files = $files;
return $this;
}
public function getDataUser(): ?string
{
return $this->data_user;
}
public function setDataUser(string $data_user): self
{
$this->data_user = $data_user;
return $this;
}
public function getNumberAp(): ?string
{
return $this->number_ap;
}
public function setNumberAp(string $number_ap): self
{
$this->number_ap = $number_ap;
return $this;
}
public function getSmsKod(): ?string
{
return $this->sms_kod;
}
public function setSmsKod(string $sms_kod): self
{
$this->sms_kod = $sms_kod;
return $this;
}
public function getOsr(): ?string
{
return $this->osr;
}
public function setOsr(string $osr): self
{
$this->osr = $osr;
return $this;
}
}