110 lines
1.8 KiB
PHP
110 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Repository\UsrlogRepository;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* @ORM\Entity(repositoryClass=UsrlogRepository::class)
|
|
*/
|
|
class Usrlog
|
|
{
|
|
/**
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue
|
|
* @ORM\Column(type="integer")
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* @ORM\Column(type="string", length=255)
|
|
*/
|
|
private $pcode;
|
|
|
|
/**
|
|
* @ORM\Column(type="text")
|
|
*/
|
|
private $agent;
|
|
|
|
/**
|
|
* @ORM\Column(type="string", length=45)
|
|
*/
|
|
private $clientIp;
|
|
|
|
/**
|
|
* @ORM\Column(type="string", length=50)
|
|
*/
|
|
private $method;
|
|
|
|
/**
|
|
* @ORM\Column(type="datetime")
|
|
*/
|
|
private $createdAt;
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getPcode(): ?string
|
|
{
|
|
return $this->pcode;
|
|
}
|
|
|
|
public function setPcode(string $pcode): self
|
|
{
|
|
$this->pcode = $pcode;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getAgent(): ?string
|
|
{
|
|
return $this->agent;
|
|
}
|
|
|
|
public function setAgent(string $agent): self
|
|
{
|
|
$this->agent = $agent;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getClientIp(): ?string
|
|
{
|
|
return $this->clientIp;
|
|
}
|
|
|
|
public function setClientIp(string $clientIp): self
|
|
{
|
|
$this->clientIp = $clientIp;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getMethod(): ?string
|
|
{
|
|
return $this->method;
|
|
}
|
|
|
|
public function setMethod(string $method): self
|
|
{
|
|
$this->method = $method;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getCreatedAt(): ?\DateTimeInterface
|
|
{
|
|
return $this->createdAt;
|
|
}
|
|
|
|
public function setCreatedAt(\DateTimeInterface $createdAt): self
|
|
{
|
|
$this->createdAt = $createdAt;
|
|
|
|
return $this;
|
|
}
|
|
}
|