<?php

namespace Offy\Bundle\DashboardBundle\Document;

use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;

/**
 * Offy\Bundle\DashboardBundle\Document\Applicant
 */
/**
 * @MongoDB\Document(repositoryClass="Offy\Bundle\DashboardBundle\Repository\ApplicantRepository")
 */
class Applicant
{
      /**
     * @MongoDB\Id
     */
    protected $id;
      /**
     * @MongoDB\string
     */
     /**
     * @MongoDB\int
     */
    protected $applicant_id;
      /**
     * @MongoDB\string
     */
    protected $name;
     /**
     * @MongoDB\timestamp
     */
    protected $start_date;
     /**
     * @MongoDB\int
     */
    protected $job_id;
    /**
     * @MongoDB\string
     */
    protected $job_name;
     /**
     * @MongoDB\int
     */
    protected $department_id;
    /**
     * @MongoDB\string
     */
    protected $department_name;
    /**
     * @MongoDB\string
     */
    protected $image;
    /**
     * @MongoDB\int
     */
    protected $stage_id;
    /**
     * @MongoDB\string
     */
    protected $stage_name;
    /**
     * @MongoDB\string
     */
    protected $creat_date;

    /**
     * Get id
     *
     * @return id $id
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * Set applicantId
     *
     * @param int $applicantId
     * @return self
     */
    public function setApplicantId($applicantId)
    {
        $this->applicant_id = $applicantId;
        return $this;
    }

    /**
     * Get applicantId
     *
     * @return int $applicantId
     */
    public function getApplicantId()
    {
        return $this->applicant_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 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;
    }

    /**
     * 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 stageId
     *
     * @param int $stageId
     * @return self
     */
    public function setStageId($stageId)
    {
        $this->stage_id = $stageId;
        return $this;
    }

    /**
     * Get stageId
     *
     * @return int $stageId
     */
    public function getStageId()
    {
        return $this->stage_id;
    }

    /**
     * Set stageName
     *
     * @param string $stageName
     * @return self
     */
    public function setStageName($stageName)
    {
        $this->stage_name = $stageName;
        return $this;
    }

    /**
     * Get stageName
     *
     * @return string $stageName
     */
    public function getStageName()
    {
        return $this->stage_name;
    }

    /**
     * Set creatDate
     *
     * @param string $creatDate
     * @return self
     */
    public function setCreatDate($creatDate)
    {
        $this->creat_date = $creatDate;
        return $this;
    }

    /**
     * Get creatDate
     *
     * @return string $creatDate
     */
    public function getCreatDate()
    {
        return $this->creat_date;
    }
}
