<?php

namespace Offy\Bundle\DashboardBundle\Document;

use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;

/**
 * Offy\Bundle\DashboardBundle\Document\Employee
 */
/**
 * @MongoDB\Document(repositoryClass="Offy\Bundle\DashboardBundle\Repository\EmployeeRepository")
 */
class Employee
{
      /**
     * @MongoDB\Id
     */
    protected $id;
     /**
     * @MongoDB\int
     */
    protected $employee_id;
      /**
     * @MongoDB\string
     */
    protected $name;
     /**
     * @MongoDB\string
     */
    protected $start_date;
    /**
     * @MongoDB\string
     */
    protected $image;
    /**
     * @MongoDB\int
     */
    protected $job_id;
    /**
     * @MongoDB\string
     */
    protected $job_name;
     /**
     * @MongoDB\int
     */
    protected $department_id;
    /**
     * @MongoDB\string
     */
    protected $department_name;
    /**
     * Get id
     *
     * @return id $id
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * Set employeeId
     *
     * @param int $employeeId
     * @return self
     */
    public function setEmployeeId($employeeId)
    {
        $this->employee_id = $employeeId;
        return $this;
    }

    /**
     * Get employeeId
     *
     * @return int $employeeId
     */
    public function getEmployeeId()
    {
        return $this->employee_id;
    }

    /**
     * Set name
     *
     * @param string $name
     * @return self
     */
    public function setName($name)
    {
        $this->name = $name;
        return $this;
    }

    /**
     * Get name
     *
     * @return string $name
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Set startDate
     *
     * @param timestamp $startDate
     * @return self
     */
    public function setStartDate($startDate)
    {
        $this->start_date = $startDate;
        return $this;
    }

    /**
     * Get startDate
     *
     * @return timestamp $startDate
     */
    public function getStartDate()
    {
        return $this->start_date;
    }

    /**
     * Set image
     *
     * @param string $image
     * @return self
     */
    public function setImage($image)
    {
        $this->image = $image;
        return $this;
    }

    /**
     * Get image
     *
     * @return string $image
     */
    public function getImage()
    {
        return $this->image;
    }

    /**
     * Set jobId
     *
     * @param int $jobId
     * @return self
     */
    public function setJobId($jobId)
    {
        $this->job_id = $jobId;
        return $this;
    }

    /**
     * Get jobId
     *
     * @return int $jobId
     */
    public function getJobId()
    {
        return $this->job_id;
    }

    /**
     * Set jobName
     *
     * @param string $jobName
     * @return self
     */
    public function setJobName($jobName)
    {
        $this->job_name = $jobName;
        return $this;
    }

    /**
     * Get jobName
     *
     * @return string $jobName
     */
    public function getJobName()
    {
        return $this->job_name;
    }

    /**
     * Set departmentId
     *
     * @param int $departmentId
     * @return self
     */
    public function setDepartmentId($departmentId)
    {
        $this->department_id = $departmentId;
        return $this;
    }

    /**
     * Get departmentId
     *
     * @return int $departmentId
     */
    public function getDepartmentId()
    {
        return $this->department_id;
    }

    /**
     * Set departmentName
     *
     * @param string $departmentName
     * @return self
     */
    public function setDepartmentName($departmentName)
    {
        $this->department_name = $departmentName;
        return $this;
    }

    /**
     * Get departmentName
     *
     * @return string $departmentName
     */
    public function getDepartmentName()
    {
        return $this->department_name;
    }
}
