12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class SkillProfile extends \Entity
- {
- /**
- * @return \Entity\Repository\SkillProfileRepository
- */
- public static function repository(){
- return \Entity\Repository\SkillProfileRepository::instance();
- }
- /**
- * @return \Entity\SkillProfile
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var string $name
- */
- protected $name;
- /**
- * @var text $description
- */
- protected $description;
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set name
- *
- * @param string $value
- * @return SkillProfile
- */
- public function set_name($value)
- {
- $this->name = $value;
- return $this;
- }
- /**
- * Get name
- *
- * @return string
- */
- public function get_name()
- {
- return $this->name;
- }
- /**
- * Set description
- *
- * @param text $value
- * @return SkillProfile
- */
- public function set_description($value)
- {
- $this->description = $value;
- return $this;
- }
- /**
- * Get description
- *
- * @return text
- */
- public function get_description()
- {
- return $this->description;
- }
- }
|