skill_profile.class.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. namespace Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. *
  6. * @license see /license.txt
  7. * @author autogenerated
  8. */
  9. class SkillProfile extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\SkillProfileRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\SkillProfileRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\SkillProfile
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var string $name
  29. */
  30. protected $name;
  31. /**
  32. * @var text $description
  33. */
  34. protected $description;
  35. /**
  36. * Get id
  37. *
  38. * @return integer
  39. */
  40. public function get_id()
  41. {
  42. return $this->id;
  43. }
  44. /**
  45. * Set name
  46. *
  47. * @param string $value
  48. * @return SkillProfile
  49. */
  50. public function set_name($value)
  51. {
  52. $this->name = $value;
  53. return $this;
  54. }
  55. /**
  56. * Get name
  57. *
  58. * @return string
  59. */
  60. public function get_name()
  61. {
  62. return $this->name;
  63. }
  64. /**
  65. * Set description
  66. *
  67. * @param text $value
  68. * @return SkillProfile
  69. */
  70. public function set_description($value)
  71. {
  72. $this->description = $value;
  73. return $this;
  74. }
  75. /**
  76. * Get description
  77. *
  78. * @return text
  79. */
  80. public function get_description()
  81. {
  82. return $this->description;
  83. }
  84. }