CommentListReplyBean.java 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. package com.edufound.reader.bean;
  2. import java.util.List;
  3. public class CommentListReplyBean {
  4. private String columnId;
  5. private String columnNames;
  6. private String detailDesc;
  7. private String feature;
  8. private String gmtCreated;
  9. private String gmtModified;
  10. private String id;
  11. private boolean isLike;
  12. private String isTop;
  13. private String likeCount;
  14. private PostsAttributeInfo postsAttributeInfo;
  15. private String replyCount;
  16. private List<ReplyList> replyList;
  17. private List<ReplyVOList> replyVOList;
  18. private String status;
  19. private String title;
  20. private UserBean user;
  21. private String userId;
  22. public void setColumnId(String columnId) {
  23. this.columnId = columnId;
  24. }
  25. public String getColumnId() {
  26. return this.columnId;
  27. }
  28. public void setColumnNames(String columnNames) {
  29. this.columnNames = columnNames;
  30. }
  31. public String getColumnNames() {
  32. return this.columnNames;
  33. }
  34. public void setDetailDesc(String detailDesc) {
  35. this.detailDesc = detailDesc;
  36. }
  37. public String getDetailDesc() {
  38. return this.detailDesc;
  39. }
  40. public void setFeature(String feature) {
  41. this.feature = feature;
  42. }
  43. public String getFeature() {
  44. return this.feature;
  45. }
  46. public void setGmtCreated(String gmtCreated) {
  47. this.gmtCreated = gmtCreated;
  48. }
  49. public String getGmtCreated() {
  50. return this.gmtCreated;
  51. }
  52. public void setGmtModified(String gmtModified) {
  53. this.gmtModified = gmtModified;
  54. }
  55. public String getGmtModified() {
  56. return this.gmtModified;
  57. }
  58. public void setId(String id) {
  59. this.id = id;
  60. }
  61. public String getId() {
  62. return this.id;
  63. }
  64. public void setIsLike(boolean isLike) {
  65. this.isLike = isLike;
  66. }
  67. public boolean getIsLike() {
  68. return this.isLike;
  69. }
  70. public void setIsTop(String isTop) {
  71. this.isTop = isTop;
  72. }
  73. public String getIsTop() {
  74. return this.isTop;
  75. }
  76. public void setLikeCount(String likeCount) {
  77. this.likeCount = likeCount;
  78. }
  79. public String getLikeCount() {
  80. return this.likeCount;
  81. }
  82. public void setPostsAttributeInfo(PostsAttributeInfo postsAttributeInfo) {
  83. this.postsAttributeInfo = postsAttributeInfo;
  84. }
  85. public PostsAttributeInfo getPostsAttributeInfo() {
  86. return this.postsAttributeInfo;
  87. }
  88. public void setReplyCount(String replyCount) {
  89. this.replyCount = replyCount;
  90. }
  91. public String getReplyCount() {
  92. return this.replyCount;
  93. }
  94. public void setReplyList(List<ReplyList> replyList) {
  95. this.replyList = replyList;
  96. }
  97. public void setReplyVOList(List<ReplyVOList> replyVOList) {
  98. this.replyVOList = replyVOList;
  99. }
  100. public List<ReplyList> getReplyList() {
  101. return this.replyList;
  102. }
  103. public List<ReplyVOList> getReplyVOList() {
  104. return this.replyVOList;
  105. }
  106. public void setStatus(String status) {
  107. this.status = status;
  108. }
  109. public String getStatus() {
  110. return this.status;
  111. }
  112. public void setTitle(String title) {
  113. this.title = title;
  114. }
  115. public String getTitle() {
  116. return this.title;
  117. }
  118. public void setUser(UserBean user) {
  119. this.user = user;
  120. }
  121. public UserBean getUser() {
  122. return this.user;
  123. }
  124. public void setUserId(String userId) {
  125. this.userId = userId;
  126. }
  127. public String getUserId() {
  128. return this.userId;
  129. }
  130. public class ReplyList {
  131. }
  132. public class ReplyVOList {
  133. private String content;
  134. private String gmtCreated;
  135. private String gmtModified;
  136. private String id;
  137. private boolean isRisky;
  138. private String postsId;
  139. private String status;
  140. private UserBean user;
  141. private String userId;
  142. private String userType;
  143. public void setContent(String content) {
  144. this.content = content;
  145. }
  146. public String getContent() {
  147. return this.content;
  148. }
  149. public void setGmtCreated(String gmtCreated) {
  150. this.gmtCreated = gmtCreated;
  151. }
  152. public String getGmtCreated() {
  153. return this.gmtCreated;
  154. }
  155. public void setGmtModified(String gmtModified) {
  156. this.gmtModified = gmtModified;
  157. }
  158. public String getGmtModified() {
  159. return this.gmtModified;
  160. }
  161. public void setId(String id) {
  162. this.id = id;
  163. }
  164. public String getId() {
  165. return this.id;
  166. }
  167. public void setIsRisky(boolean isRisky) {
  168. this.isRisky = isRisky;
  169. }
  170. public boolean getIsRisky() {
  171. return this.isRisky;
  172. }
  173. public void setPostsId(String postsId) {
  174. this.postsId = postsId;
  175. }
  176. public String getPostsId() {
  177. return this.postsId;
  178. }
  179. public void setStatus(String status) {
  180. this.status = status;
  181. }
  182. public String getStatus() {
  183. return this.status;
  184. }
  185. public void setUser(UserBean user) {
  186. this.user = user;
  187. }
  188. public UserBean getUser() {
  189. return this.user;
  190. }
  191. public void setUserId(String userId) {
  192. this.userId = userId;
  193. }
  194. public String getUserId() {
  195. return this.userId;
  196. }
  197. public void setUserType(String userType) {
  198. this.userType = userType;
  199. }
  200. public String getUserType() {
  201. return this.userType;
  202. }
  203. }
  204. public class PostsAttributeInfo {
  205. }
  206. }