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