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