ModelBean.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. package com.edufound.reader.bean;
  2. import java.util.List;
  3. public class ModelBean {
  4. private String amount;
  5. private String endTime;
  6. private String gmtCreated;
  7. private String gmtModified;
  8. private List<ReadUserList> readUserList;
  9. private String id;
  10. private String img;
  11. private String partakeChannel;
  12. private String redFlower;
  13. private String sort;
  14. private String startTime;
  15. private String status;
  16. private String templateCode;
  17. private String type;
  18. private String url;
  19. public String getAmount() {
  20. return amount;
  21. }
  22. public void setAmount(String amount) {
  23. this.amount = amount;
  24. }
  25. public String getEndTime() {
  26. return endTime;
  27. }
  28. public void setEndTime(String endTime) {
  29. this.endTime = endTime;
  30. }
  31. public String getGmtCreated() {
  32. return gmtCreated;
  33. }
  34. public void setGmtCreated(String gmtCreated) {
  35. this.gmtCreated = gmtCreated;
  36. }
  37. public String getGmtModified() {
  38. return gmtModified;
  39. }
  40. public void setGmtModified(String gmtModified) {
  41. this.gmtModified = gmtModified;
  42. }
  43. public List<ReadUserList> getReadUserList() {
  44. return readUserList;
  45. }
  46. public void setReadUserList(List<ReadUserList> readUserList) {
  47. this.readUserList = readUserList;
  48. }
  49. public String getId() {
  50. return id;
  51. }
  52. public void setId(String id) {
  53. this.id = id;
  54. }
  55. public String getImg() {
  56. return img;
  57. }
  58. public void setImg(String img) {
  59. this.img = img;
  60. }
  61. public String getPartakeChannel() {
  62. return partakeChannel;
  63. }
  64. public void setPartakeChannel(String partakeChannel) {
  65. this.partakeChannel = partakeChannel;
  66. }
  67. public String getRedFlower() {
  68. return redFlower;
  69. }
  70. public void setRedFlower(String redFlower) {
  71. this.redFlower = redFlower;
  72. }
  73. public String getSort() {
  74. return sort;
  75. }
  76. public void setSort(String sort) {
  77. this.sort = sort;
  78. }
  79. public String getStartTime() {
  80. return startTime;
  81. }
  82. public void setStartTime(String startTime) {
  83. this.startTime = startTime;
  84. }
  85. public String getStatus() {
  86. return status;
  87. }
  88. public void setStatus(String status) {
  89. this.status = status;
  90. }
  91. public String getTemplateCode() {
  92. return templateCode;
  93. }
  94. public void setTemplateCode(String templateCode) {
  95. this.templateCode = templateCode;
  96. }
  97. public String getType() {
  98. return type;
  99. }
  100. public void setType(String type) {
  101. this.type = type;
  102. }
  103. public String getUrl() {
  104. return url;
  105. }
  106. public void setUrl(String url) {
  107. this.url = url;
  108. }
  109. public class ReadUserList {
  110. private String activityId;
  111. private ExampleBean example;
  112. private String gmtCreated;
  113. private String gmtModified;
  114. private String id;
  115. private String sort;
  116. private String status;
  117. private String userReadId;
  118. private List<UserRecordBean> topList;
  119. private String count;
  120. public String getCount() {
  121. return count;
  122. }
  123. public void setCount(String count) {
  124. this.count = count;
  125. }
  126. public String getActivityId() {
  127. return activityId;
  128. }
  129. public void setActivityId(String activityId) {
  130. this.activityId = activityId;
  131. }
  132. public ExampleBean getExample() {
  133. return example;
  134. }
  135. public void setExample(ExampleBean example) {
  136. this.example = example;
  137. }
  138. public String getGmtCreated() {
  139. return gmtCreated;
  140. }
  141. public void setGmtCreated(String gmtCreated) {
  142. this.gmtCreated = gmtCreated;
  143. }
  144. public String getGmtModified() {
  145. return gmtModified;
  146. }
  147. public void setGmtModified(String gmtModified) {
  148. this.gmtModified = gmtModified;
  149. }
  150. public String getId() {
  151. return id;
  152. }
  153. public void setId(String id) {
  154. this.id = id;
  155. }
  156. public String getSort() {
  157. return sort;
  158. }
  159. public void setSort(String sort) {
  160. this.sort = sort;
  161. }
  162. public String getStatus() {
  163. return status;
  164. }
  165. public void setStatus(String status) {
  166. this.status = status;
  167. }
  168. public String getUserReadId() {
  169. return userReadId;
  170. }
  171. public void setUserReadId(String userReadId) {
  172. this.userReadId = userReadId;
  173. }
  174. public List<UserRecordBean> getTopList() {
  175. return topList;
  176. }
  177. public void setTopList(List<UserRecordBean> topList) {
  178. this.topList = topList;
  179. }
  180. }
  181. }