<?php
namespace App\Entity\Login;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* LoginStatistics
*
* @ORM\Table(name="public.loginstatistics")
* @ORM\Entity
*/
class LoginStatistics
{
/**
* @var integer
* @ORM\Column(name="id", type="integer", nullable=false, options={"default"="nextval('loginstatistics_id_seq'::regclass)"})
* @ORM\Id
* @ORM\GeneratedValue(strategy="SEQUENCE")
* @ORM\SequenceGenerator(sequenceName="loginstatistics_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="loan_details", type="text")
*/
private $loanDetails;
/**
* @var integer
*
* @ORM\Column(name="total_employees", type="integer")
*/
private $totalEmployees;
/**
* @var integer
*
* @ORM\Column(name="total_closures", type="integer")
*/
private $totalClosures;
/**
* @var integer
*
* @ORM\Column(name="total_admission", type="integer")
*/
private $totalAdmission;
/**
* @var \DateTime
*
* @ORM\Column(name="entered_date", type="datetime")
*/
private $enteredDate;
/**
* @var integer
*
* @ORM\Column(name="total_offices", type="integer",nullable=true)
*/
private $totalOffices;
/**
* @var string
*
* @ORM\Column(name="depart_emp_count", type="text",nullable=true)
*/
private $departEmpCount;
public function getId(): ?int
{
return $this->id;
}
public function getLoanDetails(): ?string
{
return $this->loanDetails;
}
public function setLoanDetails(string $loanDetails): self
{
$this->loanDetails = $loanDetails;
return $this;
}
public function getTotalEmployees(): ?int
{
return $this->totalEmployees;
}
public function setTotalEmployees(int $totalEmployees): self
{
$this->totalEmployees = $totalEmployees;
return $this;
}
public function getTotalClosures(): ?int
{
return $this->totalClosures;
}
public function setTotalClosures(int $totalClosures): self
{
$this->totalClosures = $totalClosures;
return $this;
}
public function getTotalAdmission(): ?int
{
return $this->totalAdmission;
}
public function setTotalAdmission(int $totalAdmission): self
{
$this->totalAdmission = $totalAdmission;
return $this;
}
public function getEnteredDate(): ?\DateTimeInterface
{
return $this->enteredDate;
}
public function setEnteredDate(\DateTimeInterface $enteredDate): self
{
$this->enteredDate = $enteredDate;
return $this;
}
public function getTotalOffices(): ?int
{
return $this->totalOffices;
}
public function setTotalOffices(?int $totalOffices): self
{
$this->totalOffices = $totalOffices;
return $this;
}
public function getDepartEmpCount(): ?string
{
return $this->departEmpCount;
}
public function setDepartEmpCount(?string $departEmpCount): self
{
$this->departEmpCount = $departEmpCount;
return $this;
}
}