src/Entity/EmployeeAdvance.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EmployeeAdvanceRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=EmployeeAdvanceRepository::class)
  7.  */
  8. class EmployeeAdvance
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Employee::class, inversedBy="employeeAdvances")
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $employee;
  21.     /**
  22.      * @ORM\Column(type="float")
  23.      */
  24.     private $year;
  25.     /**
  26.      * @ORM\Column(type="float")
  27.      */
  28.     private $month;
  29.     /**
  30.      * @ORM\Column(type="float")
  31.      */
  32.     private $amount;
  33.     /**
  34.      * @ORM\Column(type="float")
  35.      */
  36.     private $advanceOne;
  37.     /**
  38.      * @ORM\Column(type="float")
  39.      */
  40.     private $advanceTwo;
  41.     /**
  42.      * @ORM\Column(type="float")
  43.      */
  44.     private $advanceThree;
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getEmployee(): ?Employee
  50.     {
  51.         return $this->employee;
  52.     }
  53.     public function setEmployee(?Employee $employee): self
  54.     {
  55.         $this->employee $employee;
  56.         return $this;
  57.     }
  58.     public function getYear(): ?float
  59.     {
  60.         return $this->year;
  61.     }
  62.     public function setYear(float $year): self
  63.     {
  64.         $this->year $year;
  65.         return $this;
  66.     }
  67.     public function getMonth(): ?float
  68.     {
  69.         return $this->month;
  70.     }
  71.     public function setMonth(float $month): self
  72.     {
  73.         $this->month $month;
  74.         return $this;
  75.     }
  76.     public function getAmount(): ?float
  77.     {
  78.         return $this->amount;
  79.     }
  80.     public function setAmount(float $amount): self
  81.     {
  82.         $this->amount $amount;
  83.         return $this;
  84.     }
  85.     public function getAdvanceOne(): ?float
  86.     {
  87.         return $this->advanceOne;
  88.     }
  89.     public function setAdvanceOne(float $advanceOne): self
  90.     {
  91.         $this->advanceOne $advanceOne;
  92.         return $this;
  93.     }
  94.     public function getAdvanceTwo(): ?float
  95.     {
  96.         return $this->advanceTwo;
  97.     }
  98.     public function setAdvanceTwo(float $advanceTwo): self
  99.     {
  100.         $this->advanceTwo $advanceTwo;
  101.         return $this;
  102.     }
  103.     public function getAdvanceThree(): ?float
  104.     {
  105.         return $this->advanceThree;
  106.     }
  107.     public function setAdvanceThree(float $advanceThree): self
  108.     {
  109.         $this->advanceThree $advanceThree;
  110.         return $this;
  111.     }
  112. }