groups.class.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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 Groups extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\GroupsRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\GroupsRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\Groups
  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 $description
  33. */
  34. protected $description;
  35. /**
  36. * @var string $picture_uri
  37. */
  38. protected $picture_uri;
  39. /**
  40. * @var string $url
  41. */
  42. protected $url;
  43. /**
  44. * @var integer $visibility
  45. */
  46. protected $visibility;
  47. /**
  48. * @var string $updated_on
  49. */
  50. protected $updated_on;
  51. /**
  52. * @var string $created_on
  53. */
  54. protected $created_on;
  55. /**
  56. * Get id
  57. *
  58. * @return integer
  59. */
  60. public function get_id()
  61. {
  62. return $this->id;
  63. }
  64. /**
  65. * Set name
  66. *
  67. * @param string $value
  68. * @return Groups
  69. */
  70. public function set_name($value)
  71. {
  72. $this->name = $value;
  73. return $this;
  74. }
  75. /**
  76. * Get name
  77. *
  78. * @return string
  79. */
  80. public function get_name()
  81. {
  82. return $this->name;
  83. }
  84. /**
  85. * Set description
  86. *
  87. * @param string $value
  88. * @return Groups
  89. */
  90. public function set_description($value)
  91. {
  92. $this->description = $value;
  93. return $this;
  94. }
  95. /**
  96. * Get description
  97. *
  98. * @return string
  99. */
  100. public function get_description()
  101. {
  102. return $this->description;
  103. }
  104. /**
  105. * Set picture_uri
  106. *
  107. * @param string $value
  108. * @return Groups
  109. */
  110. public function set_picture_uri($value)
  111. {
  112. $this->picture_uri = $value;
  113. return $this;
  114. }
  115. /**
  116. * Get picture_uri
  117. *
  118. * @return string
  119. */
  120. public function get_picture_uri()
  121. {
  122. return $this->picture_uri;
  123. }
  124. /**
  125. * Set url
  126. *
  127. * @param string $value
  128. * @return Groups
  129. */
  130. public function set_url($value)
  131. {
  132. $this->url = $value;
  133. return $this;
  134. }
  135. /**
  136. * Get url
  137. *
  138. * @return string
  139. */
  140. public function get_url()
  141. {
  142. return $this->url;
  143. }
  144. /**
  145. * Set visibility
  146. *
  147. * @param integer $value
  148. * @return Groups
  149. */
  150. public function set_visibility($value)
  151. {
  152. $this->visibility = $value;
  153. return $this;
  154. }
  155. /**
  156. * Get visibility
  157. *
  158. * @return integer
  159. */
  160. public function get_visibility()
  161. {
  162. return $this->visibility;
  163. }
  164. /**
  165. * Set updated_on
  166. *
  167. * @param string $value
  168. * @return Groups
  169. */
  170. public function set_updated_on($value)
  171. {
  172. $this->updated_on = $value;
  173. return $this;
  174. }
  175. /**
  176. * Get updated_on
  177. *
  178. * @return string
  179. */
  180. public function get_updated_on()
  181. {
  182. return $this->updated_on;
  183. }
  184. /**
  185. * Set created_on
  186. *
  187. * @param string $value
  188. * @return Groups
  189. */
  190. public function set_created_on($value)
  191. {
  192. $this->created_on = $value;
  193. return $this;
  194. }
  195. /**
  196. * Get created_on
  197. *
  198. * @return string
  199. */
  200. public function get_created_on()
  201. {
  202. return $this->created_on;
  203. }
  204. }