<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class JobDailyRoutineCategory {
/**
* @var int
*/
private $id;
/**
* @var string
*/
private $name;
/**
* @var int
*/
private $position;
/**
* Get id.
*
* @return int
*/
public function getId() {
return $this->id;
}
/**
* Set name.
*
* @param string $name
*
* @return JobDailyRoutineCategory
*/
public function setName($name) {
$this->name = $name;
return $this;
}
/**
* Get name.
*
* @return string
*/
public function getName() {
return $this->name;
}
public function getPosition() {
return $this->position;
}
public function setPosition($position) {
$this->position = $position;
}
}