id; } /** * Set userId * * @param integer $userId * @return EntitySkillRelUser */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return integer */ public function getUserId() { return $this->userId; } /** * Set skillId * * @param integer $skillId * @return EntitySkillRelUser */ public function setSkillId($skillId) { $this->skillId = $skillId; return $this; } /** * Get skillId * * @return integer */ public function getSkillId() { return $this->skillId; } /** * Set acquiredSkillAt * * @param \DateTime $acquiredSkillAt * @return EntitySkillRelUser */ public function setAcquiredSkillAt($acquiredSkillAt) { $this->acquiredSkillAt = $acquiredSkillAt; return $this; } /** * Get acquiredSkillAt * * @return \DateTime */ public function getAcquiredSkillAt() { return $this->acquiredSkillAt; } /** * Set assignedBy * * @param integer $assignedBy * @return EntitySkillRelUser */ public function setAssignedBy($assignedBy) { $this->assignedBy = $assignedBy; return $this; } /** * Get assignedBy * * @return integer */ public function getAssignedBy() { return $this->assignedBy; } }