TaskBean.java 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. package com.edufound.reader.bean;
  2. public class TaskBean {
  3. private boolean finished;
  4. private Task task;
  5. private UserTask userTask;
  6. public void setFinished(boolean finished) {
  7. this.finished = finished;
  8. }
  9. public boolean getFinished() {
  10. return this.finished;
  11. }
  12. public UserTask getUserTask() {
  13. return userTask;
  14. }
  15. public void setUserTask(UserTask userTask) {
  16. this.userTask = userTask;
  17. }
  18. public void setTask(Task task) {
  19. this.task = task;
  20. }
  21. public Task getTask() {
  22. return this.task;
  23. }
  24. public class Task {
  25. private String award;
  26. private String description;
  27. private String gmtCreated;
  28. private String gmtModified;
  29. private String id;
  30. private String joinAmount;
  31. private String joStringype;
  32. private String os;
  33. private String sort;
  34. private String status;
  35. private String targetType;
  36. private String title;
  37. private String type;
  38. private String shortTitle;
  39. public String getShortTitle() {
  40. return shortTitle;
  41. }
  42. public void setShortTitle(String shortTitle) {
  43. this.shortTitle = shortTitle;
  44. }
  45. public void setAward(String award) {
  46. this.award = award;
  47. }
  48. public String getAward() {
  49. return this.award;
  50. }
  51. public void setDescription(String description) {
  52. this.description = description;
  53. }
  54. public String getDescription() {
  55. return this.description;
  56. }
  57. public void setGmtCreated(String gmtCreated) {
  58. this.gmtCreated = gmtCreated;
  59. }
  60. public String getGmtCreated() {
  61. return this.gmtCreated;
  62. }
  63. public void setGmtModified(String gmtModified) {
  64. this.gmtModified = gmtModified;
  65. }
  66. public String getGmtModified() {
  67. return this.gmtModified;
  68. }
  69. public void setId(String id) {
  70. this.id = id;
  71. }
  72. public String getId() {
  73. return this.id;
  74. }
  75. public void setJoinAmount(String joinAmount) {
  76. this.joinAmount = joinAmount;
  77. }
  78. public String getJoinAmount() {
  79. return this.joinAmount;
  80. }
  81. public void setJoStringype(String joStringype) {
  82. this.joStringype = joStringype;
  83. }
  84. public String getJoStringype() {
  85. return this.joStringype;
  86. }
  87. public void setOs(String os) {
  88. this.os = os;
  89. }
  90. public String getOs() {
  91. return this.os;
  92. }
  93. public void setSort(String sort) {
  94. this.sort = sort;
  95. }
  96. public String getSort() {
  97. return this.sort;
  98. }
  99. public void setStatus(String status) {
  100. this.status = status;
  101. }
  102. public String getStatus() {
  103. return this.status;
  104. }
  105. public void setTargetType(String targetType) {
  106. this.targetType = targetType;
  107. }
  108. public String getTargetType() {
  109. return this.targetType;
  110. }
  111. public void setTitle(String title) {
  112. this.title = title;
  113. }
  114. public String getTitle() {
  115. return this.title;
  116. }
  117. public void setType(String type) {
  118. this.type = type;
  119. }
  120. public String getType() {
  121. return this.type;
  122. }
  123. }
  124. public class UserTask {
  125. private String channel;
  126. private String completeAmount;
  127. private String completeDate;
  128. private String gmtCreated;
  129. private String gmtModified;
  130. private String id;
  131. private String joStringype;
  132. private String status;
  133. private String taskId;
  134. private String taskType;
  135. private String uid;
  136. public void setChannel(String channel) {
  137. this.channel = channel;
  138. }
  139. public String getChannel() {
  140. return this.channel;
  141. }
  142. public void setCompleteAmount(String completeAmount) {
  143. this.completeAmount = completeAmount;
  144. }
  145. public String getCompleteAmount() {
  146. return this.completeAmount;
  147. }
  148. public void setCompleteDate(String completeDate) {
  149. this.completeDate = completeDate;
  150. }
  151. public String getCompleteDate() {
  152. return this.completeDate;
  153. }
  154. public void setGmtCreated(String gmtCreated) {
  155. this.gmtCreated = gmtCreated;
  156. }
  157. public String getGmtCreated() {
  158. return this.gmtCreated;
  159. }
  160. public void setGmtModified(String gmtModified) {
  161. this.gmtModified = gmtModified;
  162. }
  163. public String getGmtModified() {
  164. return this.gmtModified;
  165. }
  166. public void setId(String id) {
  167. this.id = id;
  168. }
  169. public String getId() {
  170. return this.id;
  171. }
  172. public void setJoStringype(String joStringype) {
  173. this.joStringype = joStringype;
  174. }
  175. public String getJoStringype() {
  176. return this.joStringype;
  177. }
  178. public void setStatus(String status) {
  179. this.status = status;
  180. }
  181. public String getStatus() {
  182. return this.status;
  183. }
  184. public void setTaskId(String taskId) {
  185. this.taskId = taskId;
  186. }
  187. public String getTaskId() {
  188. return this.taskId;
  189. }
  190. public void setTaskType(String taskType) {
  191. this.taskType = taskType;
  192. }
  193. public String getTaskType() {
  194. return this.taskType;
  195. }
  196. public void setUid(String uid) {
  197. this.uid = uid;
  198. }
  199. public String getUid() {
  200. return this.uid;
  201. }
  202. }
  203. }