session_field_values.class.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 SessionFieldValues extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\SessionFieldValuesRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\SessionFieldValuesRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\SessionFieldValues
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var integer $session_id
  29. */
  30. protected $session_id;
  31. /**
  32. * @var integer $field_id
  33. */
  34. protected $field_id;
  35. /**
  36. * @var text $field_value
  37. */
  38. protected $field_value;
  39. /**
  40. * @var datetime $tms
  41. */
  42. protected $tms;
  43. /**
  44. * Get id
  45. *
  46. * @return integer
  47. */
  48. public function get_id()
  49. {
  50. return $this->id;
  51. }
  52. /**
  53. * Set session_id
  54. *
  55. * @param integer $value
  56. * @return SessionFieldValues
  57. */
  58. public function set_session_id($value)
  59. {
  60. $this->session_id = $value;
  61. return $this;
  62. }
  63. /**
  64. * Get session_id
  65. *
  66. * @return integer
  67. */
  68. public function get_session_id()
  69. {
  70. return $this->session_id;
  71. }
  72. /**
  73. * Set field_id
  74. *
  75. * @param integer $value
  76. * @return SessionFieldValues
  77. */
  78. public function set_field_id($value)
  79. {
  80. $this->field_id = $value;
  81. return $this;
  82. }
  83. /**
  84. * Get field_id
  85. *
  86. * @return integer
  87. */
  88. public function get_field_id()
  89. {
  90. return $this->field_id;
  91. }
  92. /**
  93. * Set field_value
  94. *
  95. * @param text $value
  96. * @return SessionFieldValues
  97. */
  98. public function set_field_value($value)
  99. {
  100. $this->field_value = $value;
  101. return $this;
  102. }
  103. /**
  104. * Get field_value
  105. *
  106. * @return text
  107. */
  108. public function get_field_value()
  109. {
  110. return $this->field_value;
  111. }
  112. /**
  113. * Set tms
  114. *
  115. * @param datetime $value
  116. * @return SessionFieldValues
  117. */
  118. public function set_tms($value)
  119. {
  120. $this->tms = $value;
  121. return $this;
  122. }
  123. /**
  124. * Get tms
  125. *
  126. * @return datetime
  127. */
  128. public function get_tms()
  129. {
  130. return $this->tms;
  131. }
  132. }