src/DcSiteBundle/Entity/ServiceWorkJob.php line 8

Open in your IDE?
  1. <?php
  2. namespace DcSiteBundle\Entity;
  3. /**
  4.  * ServiceWorkJob
  5.  */
  6. class ServiceWorkJob
  7. {
  8.     /**
  9.      * @var integer
  10.      */
  11.     private $id;
  12.     /**
  13.      * @var float
  14.      */
  15.     private $job_hours;
  16.     /**
  17.      * @var Job
  18.      */
  19.     private $job;
  20.     /**
  21.      * @var ServiceWork
  22.      */
  23.     private $regulation;
  24.     /**
  25.      * Get id
  26.      *
  27.      * @return integer
  28.      */
  29.     public function getId()
  30.     {
  31.         return $this->id;
  32.     }
  33.     /**
  34.      * Set jobHours
  35.      *
  36.      * @param float $jobHours
  37.      *
  38.      * @return ServiceWorkJob
  39.      */
  40.     public function setJobHours($jobHours)
  41.     {
  42.         $this->job_hours $jobHours;
  43.         return $this;
  44.     }
  45.     /**
  46.      * Get jobHours
  47.      *
  48.      * @return float
  49.      */
  50.     public function getJobHours()
  51.     {
  52.         return $this->job_hours;
  53.     }
  54.     /**
  55.      * Set job
  56.      *
  57.      * @param Job $job
  58.      *
  59.      * @return ServiceWorkJob
  60.      */
  61.     public function setJob(Job $job null)
  62.     {
  63.         $this->job $job;
  64.         return $this;
  65.     }
  66.     /**
  67.      * Get job
  68.      *
  69.      * @return Job
  70.      */
  71.     public function getJob()
  72.     {
  73.         return $this->job;
  74.     }
  75.     /**
  76.      * Set regulation
  77.      *
  78.      * @param ServiceWork $regulation
  79.      *
  80.      * @return ServiceWorkJob
  81.      */
  82.     public function setRegulation(ServiceWork $regulation null)
  83.     {
  84.         $this->regulation $regulation;
  85.         return $this;
  86.     }
  87.     /**
  88.      * Get regulation
  89.      *
  90.      * @return ServiceWork
  91.      */
  92.     public function getRegulation()
  93.     {
  94.         return $this->regulation;
  95.     }
  96.     /**
  97.      * @var integer
  98.      */
  99.     private $process;
  100.     /**
  101.      * Set process
  102.      *
  103.      * @param integer $process
  104.      *
  105.      * @return ServiceWorkJob
  106.      */
  107.     public function setProcess($process)
  108.     {
  109.         $this->process $process;
  110.         return $this;
  111.     }
  112.     /**
  113.      * Get process
  114.      *
  115.      * @return integer
  116.      */
  117.     public function getProcess()
  118.     {
  119.         return $this->process;
  120.     }
  121.     /**
  122.      * @var float
  123.      */
  124.     private $price;
  125.     /**
  126.      * Set price
  127.      *
  128.      * @param float $price
  129.      *
  130.      * @return ServiceWorkJob
  131.      */
  132.     public function setPrice($price)
  133.     {
  134.         $this->price $price;
  135.         return $this;
  136.     }
  137.     /**
  138.      * Get price
  139.      *
  140.      * @return float
  141.      */
  142.     public function getPrice()
  143.     {
  144.         return $this->price;
  145.     }
  146. }