gradebook_linkeval_log.class.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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 GradebookLinkevalLog extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\GradebookLinkevalLogRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\GradebookLinkevalLogRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\GradebookLinkevalLog
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var integer $id_linkeval_log
  29. */
  30. protected $id_linkeval_log;
  31. /**
  32. * @var text $name
  33. */
  34. protected $name;
  35. /**
  36. * @var text $description
  37. */
  38. protected $description;
  39. /**
  40. * @var datetime $created_at
  41. */
  42. protected $created_at;
  43. /**
  44. * @var smallint $weight
  45. */
  46. protected $weight;
  47. /**
  48. * @var boolean $visible
  49. */
  50. protected $visible;
  51. /**
  52. * @var string $type
  53. */
  54. protected $type;
  55. /**
  56. * @var integer $user_id_log
  57. */
  58. protected $user_id_log;
  59. /**
  60. * Get id
  61. *
  62. * @return integer
  63. */
  64. public function get_id()
  65. {
  66. return $this->id;
  67. }
  68. /**
  69. * Set id_linkeval_log
  70. *
  71. * @param integer $value
  72. * @return GradebookLinkevalLog
  73. */
  74. public function set_id_linkeval_log($value)
  75. {
  76. $this->id_linkeval_log = $value;
  77. return $this;
  78. }
  79. /**
  80. * Get id_linkeval_log
  81. *
  82. * @return integer
  83. */
  84. public function get_id_linkeval_log()
  85. {
  86. return $this->id_linkeval_log;
  87. }
  88. /**
  89. * Set name
  90. *
  91. * @param text $value
  92. * @return GradebookLinkevalLog
  93. */
  94. public function set_name($value)
  95. {
  96. $this->name = $value;
  97. return $this;
  98. }
  99. /**
  100. * Get name
  101. *
  102. * @return text
  103. */
  104. public function get_name()
  105. {
  106. return $this->name;
  107. }
  108. /**
  109. * Set description
  110. *
  111. * @param text $value
  112. * @return GradebookLinkevalLog
  113. */
  114. public function set_description($value)
  115. {
  116. $this->description = $value;
  117. return $this;
  118. }
  119. /**
  120. * Get description
  121. *
  122. * @return text
  123. */
  124. public function get_description()
  125. {
  126. return $this->description;
  127. }
  128. /**
  129. * Set created_at
  130. *
  131. * @param datetime $value
  132. * @return GradebookLinkevalLog
  133. */
  134. public function set_created_at($value)
  135. {
  136. $this->created_at = $value;
  137. return $this;
  138. }
  139. /**
  140. * Get created_at
  141. *
  142. * @return datetime
  143. */
  144. public function get_created_at()
  145. {
  146. return $this->created_at;
  147. }
  148. /**
  149. * Set weight
  150. *
  151. * @param smallint $value
  152. * @return GradebookLinkevalLog
  153. */
  154. public function set_weight($value)
  155. {
  156. $this->weight = $value;
  157. return $this;
  158. }
  159. /**
  160. * Get weight
  161. *
  162. * @return smallint
  163. */
  164. public function get_weight()
  165. {
  166. return $this->weight;
  167. }
  168. /**
  169. * Set visible
  170. *
  171. * @param boolean $value
  172. * @return GradebookLinkevalLog
  173. */
  174. public function set_visible($value)
  175. {
  176. $this->visible = $value;
  177. return $this;
  178. }
  179. /**
  180. * Get visible
  181. *
  182. * @return boolean
  183. */
  184. public function get_visible()
  185. {
  186. return $this->visible;
  187. }
  188. /**
  189. * Set type
  190. *
  191. * @param string $value
  192. * @return GradebookLinkevalLog
  193. */
  194. public function set_type($value)
  195. {
  196. $this->type = $value;
  197. return $this;
  198. }
  199. /**
  200. * Get type
  201. *
  202. * @return string
  203. */
  204. public function get_type()
  205. {
  206. return $this->type;
  207. }
  208. /**
  209. * Set user_id_log
  210. *
  211. * @param integer $value
  212. * @return GradebookLinkevalLog
  213. */
  214. public function set_user_id_log($value)
  215. {
  216. $this->user_id_log = $value;
  217. return $this;
  218. }
  219. /**
  220. * Get user_id_log
  221. *
  222. * @return integer
  223. */
  224. public function get_user_id_log()
  225. {
  226. return $this->user_id_log;
  227. }
  228. }