<?phpnamespace DcSiteBundle\Entity;/** * ServiceWorkJob */class ServiceWorkJob{    /**     * @var integer     */    private $id;    /**     * @var float     */    private $job_hours;    /**     * @var Job     */    private $job;    /**     * @var ServiceWork     */    private $regulation;    /**     * Get id     *     * @return integer     */    public function getId()    {        return $this->id;    }    /**     * Set jobHours     *     * @param float $jobHours     *     * @return ServiceWorkJob     */    public function setJobHours($jobHours)    {        $this->job_hours = $jobHours;        return $this;    }    /**     * Get jobHours     *     * @return float     */    public function getJobHours()    {        return $this->job_hours;    }    /**     * Set job     *     * @param Job $job     *     * @return ServiceWorkJob     */    public function setJob(Job $job = null)    {        $this->job = $job;        return $this;    }    /**     * Get job     *     * @return Job     */    public function getJob()    {        return $this->job;    }    /**     * Set regulation     *     * @param ServiceWork $regulation     *     * @return ServiceWorkJob     */    public function setRegulation(ServiceWork $regulation = null)    {        $this->regulation = $regulation;        return $this;    }    /**     * Get regulation     *     * @return ServiceWork     */    public function getRegulation()    {        return $this->regulation;    }    /**     * @var integer     */    private $process;    /**     * Set process     *     * @param integer $process     *     * @return ServiceWorkJob     */    public function setProcess($process)    {        $this->process = $process;        return $this;    }    /**     * Get process     *     * @return integer     */    public function getProcess()    {        return $this->process;    }    /**     * @var float     */    private $price;    /**     * Set price     *     * @param float $price     *     * @return ServiceWorkJob     */    public function setPrice($price)    {        $this->price = $price;        return $this;    }    /**     * Get price     *     * @return float     */    public function getPrice()    {        return $this->price;    }}