src/Entity/JobSalary.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. class JobSalary {
  7.     /**
  8.      * @var integer
  9.      */
  10.     private $id;
  11.     /**
  12.      * @var integer
  13.      */
  14.     private $amsID;
  15.     /**
  16.      * @var \DateTime
  17.      */
  18.     private $createdAt;
  19.     /**
  20.      * @var Collection
  21.      */
  22.     private $entries;
  23.     /**
  24.      * @var \App\Entity\Job
  25.      */
  26.     private $job;
  27.     /**
  28.      * Constructor
  29.      */
  30.     public function __construct() {
  31.         $this->entries = new ArrayCollection();
  32.     }
  33.     public function getId() {
  34.         return $this->id;
  35.     }
  36.     public function getAmsID() {
  37.         return $this->amsID;
  38.     }
  39.     public function getCreatedAt() {
  40.         return $this->createdAt;
  41.     }
  42.     public function getEntries() {
  43.         return $this->entries;
  44.     }
  45.     public function getJob() {
  46.         return $this->job;
  47.     }
  48.     public function setId($id) {
  49.         $this->id $id;
  50.     }
  51.     public function setAmsID($amsID) {
  52.         $this->amsID $amsID;
  53.     }
  54.     public function setCreatedAt($createdAt) {
  55.         $this->createdAt $createdAt;
  56.     }
  57.     public function setEntries($entries) {
  58.         $this->entries $entries;
  59.     }
  60.     public function setJob($job) {
  61.         $this->job $job;
  62.     }
  63. }