EntityCForumMailcue.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?php
  2. use Doctrine\ORM\Mapping as ORM;
  3. /**
  4. * EntityCForumMailcue
  5. *
  6. * @Table(name="c_forum_mailcue")
  7. * @Entity
  8. */
  9. class EntityCForumMailcue
  10. {
  11. /**
  12. * @var integer
  13. *
  14. * @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  15. * @Id
  16. * @GeneratedValue(strategy="NONE")
  17. */
  18. private $id;
  19. /**
  20. * @var integer
  21. *
  22. * @Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  23. * @Id
  24. * @GeneratedValue(strategy="NONE")
  25. */
  26. private $cId;
  27. /**
  28. * @var integer
  29. *
  30. * @Column(name="thread_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  31. * @Id
  32. * @GeneratedValue(strategy="NONE")
  33. */
  34. private $threadId;
  35. /**
  36. * @var integer
  37. *
  38. * @Column(name="user_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  39. * @Id
  40. * @GeneratedValue(strategy="NONE")
  41. */
  42. private $userId;
  43. /**
  44. * @var integer
  45. *
  46. * @Column(name="post_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  47. * @Id
  48. * @GeneratedValue(strategy="NONE")
  49. */
  50. private $postId;
  51. /**
  52. * Set id
  53. *
  54. * @param integer $id
  55. * @return EntityCForumMailcue
  56. */
  57. public function setId($id)
  58. {
  59. $this->id = $id;
  60. return $this;
  61. }
  62. /**
  63. * Get id
  64. *
  65. * @return integer
  66. */
  67. public function getId()
  68. {
  69. return $this->id;
  70. }
  71. /**
  72. * Set cId
  73. *
  74. * @param integer $cId
  75. * @return EntityCForumMailcue
  76. */
  77. public function setCId($cId)
  78. {
  79. $this->cId = $cId;
  80. return $this;
  81. }
  82. /**
  83. * Get cId
  84. *
  85. * @return integer
  86. */
  87. public function getCId()
  88. {
  89. return $this->cId;
  90. }
  91. /**
  92. * Set threadId
  93. *
  94. * @param integer $threadId
  95. * @return EntityCForumMailcue
  96. */
  97. public function setThreadId($threadId)
  98. {
  99. $this->threadId = $threadId;
  100. return $this;
  101. }
  102. /**
  103. * Get threadId
  104. *
  105. * @return integer
  106. */
  107. public function getThreadId()
  108. {
  109. return $this->threadId;
  110. }
  111. /**
  112. * Set userId
  113. *
  114. * @param integer $userId
  115. * @return EntityCForumMailcue
  116. */
  117. public function setUserId($userId)
  118. {
  119. $this->userId = $userId;
  120. return $this;
  121. }
  122. /**
  123. * Get userId
  124. *
  125. * @return integer
  126. */
  127. public function getUserId()
  128. {
  129. return $this->userId;
  130. }
  131. /**
  132. * Set postId
  133. *
  134. * @param integer $postId
  135. * @return EntityCForumMailcue
  136. */
  137. public function setPostId($postId)
  138. {
  139. $this->postId = $postId;
  140. return $this;
  141. }
  142. /**
  143. * Get postId
  144. *
  145. * @return integer
  146. */
  147. public function getPostId()
  148. {
  149. return $this->postId;
  150. }
  151. }