skill.class.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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 Skill extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\SkillRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\SkillRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\Skill
  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 string $short_code
  33. */
  34. protected $short_code;
  35. /**
  36. * @var text $description
  37. */
  38. protected $description;
  39. /**
  40. * @var integer $access_url_id
  41. */
  42. protected $access_url_id;
  43. /**
  44. * @var string $icon
  45. */
  46. protected $icon;
  47. /**
  48. * Get id
  49. *
  50. * @return integer
  51. */
  52. public function get_id()
  53. {
  54. return $this->id;
  55. }
  56. /**
  57. * Set name
  58. *
  59. * @param string $value
  60. * @return Skill
  61. */
  62. public function set_name($value)
  63. {
  64. $this->name = $value;
  65. return $this;
  66. }
  67. /**
  68. * Get name
  69. *
  70. * @return string
  71. */
  72. public function get_name()
  73. {
  74. return $this->name;
  75. }
  76. /**
  77. * Set short_code
  78. *
  79. * @param string $value
  80. * @return Skill
  81. */
  82. public function set_short_code($value)
  83. {
  84. $this->short_code = $value;
  85. return $this;
  86. }
  87. /**
  88. * Get short_code
  89. *
  90. * @return string
  91. */
  92. public function get_short_code()
  93. {
  94. return $this->short_code;
  95. }
  96. /**
  97. * Set description
  98. *
  99. * @param text $value
  100. * @return Skill
  101. */
  102. public function set_description($value)
  103. {
  104. $this->description = $value;
  105. return $this;
  106. }
  107. /**
  108. * Get description
  109. *
  110. * @return text
  111. */
  112. public function get_description()
  113. {
  114. return $this->description;
  115. }
  116. /**
  117. * Set access_url_id
  118. *
  119. * @param integer $value
  120. * @return Skill
  121. */
  122. public function set_access_url_id($value)
  123. {
  124. $this->access_url_id = $value;
  125. return $this;
  126. }
  127. /**
  128. * Get access_url_id
  129. *
  130. * @return integer
  131. */
  132. public function get_access_url_id()
  133. {
  134. return $this->access_url_id;
  135. }
  136. /**
  137. * Set icon
  138. *
  139. * @param string $value
  140. * @return Skill
  141. */
  142. public function set_icon($value)
  143. {
  144. $this->icon = $value;
  145. return $this;
  146. }
  147. /**
  148. * Get icon
  149. *
  150. * @return string
  151. */
  152. public function get_icon()
  153. {
  154. return $this->icon;
  155. }
  156. }