specific_field_values.class.php 2.8 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 SpecificFieldValues extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\SpecificFieldValuesRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\SpecificFieldValuesRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\SpecificFieldValues
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var string $course_code
  29. */
  30. protected $course_code;
  31. /**
  32. * @var string $tool_id
  33. */
  34. protected $tool_id;
  35. /**
  36. * @var integer $ref_id
  37. */
  38. protected $ref_id;
  39. /**
  40. * @var integer $field_id
  41. */
  42. protected $field_id;
  43. /**
  44. * @var string $value
  45. */
  46. protected $value;
  47. /**
  48. * Get id
  49. *
  50. * @return integer
  51. */
  52. public function get_id()
  53. {
  54. return $this->id;
  55. }
  56. /**
  57. * Set course_code
  58. *
  59. * @param string $value
  60. * @return SpecificFieldValues
  61. */
  62. public function set_course_code($value)
  63. {
  64. $this->course_code = $value;
  65. return $this;
  66. }
  67. /**
  68. * Get course_code
  69. *
  70. * @return string
  71. */
  72. public function get_course_code()
  73. {
  74. return $this->course_code;
  75. }
  76. /**
  77. * Set tool_id
  78. *
  79. * @param string $value
  80. * @return SpecificFieldValues
  81. */
  82. public function set_tool_id($value)
  83. {
  84. $this->tool_id = $value;
  85. return $this;
  86. }
  87. /**
  88. * Get tool_id
  89. *
  90. * @return string
  91. */
  92. public function get_tool_id()
  93. {
  94. return $this->tool_id;
  95. }
  96. /**
  97. * Set ref_id
  98. *
  99. * @param integer $value
  100. * @return SpecificFieldValues
  101. */
  102. public function set_ref_id($value)
  103. {
  104. $this->ref_id = $value;
  105. return $this;
  106. }
  107. /**
  108. * Get ref_id
  109. *
  110. * @return integer
  111. */
  112. public function get_ref_id()
  113. {
  114. return $this->ref_id;
  115. }
  116. /**
  117. * Set field_id
  118. *
  119. * @param integer $value
  120. * @return SpecificFieldValues
  121. */
  122. public function set_field_id($value)
  123. {
  124. $this->field_id = $value;
  125. return $this;
  126. }
  127. /**
  128. * Get field_id
  129. *
  130. * @return integer
  131. */
  132. public function get_field_id()
  133. {
  134. return $this->field_id;
  135. }
  136. /**
  137. * Set value
  138. *
  139. * @param string $value
  140. * @return SpecificFieldValues
  141. */
  142. public function set_value($value)
  143. {
  144. $this->value = $value;
  145. return $this;
  146. }
  147. /**
  148. * Get value
  149. *
  150. * @return string
  151. */
  152. public function get_value()
  153. {
  154. return $this->value;
  155. }
  156. }