src/Entity/Admin/AdminLogRows.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Admin;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\Admin\AdminLogRowsRepository")
  6.  * @ORM\Table(name="otp_admin.tAdminLogRows")
  7.  */
  8. class AdminLogRows
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer", name="rec_id")
  14.      */
  15.     private int $id;
  16.     /**
  17.      * @ORM\Column(type="integer", name="fUserID")
  18.      */
  19.     private int $userId;
  20.     /**
  21.      * @ORM\Column(type="smallint", name="fActionID")
  22.      */
  23.     private int $actionId;
  24.     /**
  25.      * @ORM\Column(type="integer", name="fBindID")
  26.      */
  27.     private int $bindId;
  28.     /**
  29.      * @ORM\Column(type="string", length=50, name="fProject")
  30.      */
  31.     private string $project;
  32.     /**
  33.      * @ORM\Column(type="datetime", name="fDate")
  34.      */
  35.     private \DateTimeInterface $date;
  36.     /**
  37.      * @ORM\Column(type="string", length=60, name="fIP")
  38.      */
  39.     private string $ip;
  40.     /**
  41.      * @ORM\Column(type="text", name="fDescript")
  42.      */
  43.     private string $descript;
  44.     public function getId(): int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getUserId(): int
  49.     {
  50.         return $this->userId;
  51.     }
  52.     public function setUserId(int $userId): self
  53.     {
  54.         $this->userId $userId;
  55.         return $this;
  56.     }
  57.     public function getActionId(): int
  58.     {
  59.         return $this->actionId;
  60.     }
  61.     public function setActionId(int $actionId): self
  62.     {
  63.         $this->actionId $actionId;
  64.         return $this;
  65.     }
  66.     public function getBindId(): int
  67.     {
  68.         return $this->bindId;
  69.     }
  70.     public function setBindId(int $bindId): self
  71.     {
  72.         $this->bindId $bindId;
  73.         return $this;
  74.     }
  75.     public function getProject(): string
  76.     {
  77.         return $this->project;
  78.     }
  79.     public function setProject(string $project): self
  80.     {
  81.         $this->project $project;
  82.         return $this;
  83.     }
  84.     public function getDate(): \DateTimeInterface
  85.     {
  86.         return $this->date;
  87.     }
  88.     public function setDate(\DateTimeInterface $date): self
  89.     {
  90.         $this->date $date;
  91.         return $this;
  92.     }
  93.     public function getIp(): string
  94.     {
  95.         return $this->ip;
  96.     }
  97.     public function setIp(string $ip): self
  98.     {
  99.         $this->ip $ip;
  100.         return $this;
  101.     }
  102.     public function getDescript(): string
  103.     {
  104.         return $this->descript;
  105.     }
  106.     public function setDescript(string $descript): self
  107.     {
  108.         $this->descript $descript;
  109.         return $this;
  110.     }
  111. }