ActivityEventResultBean.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package com.edufound.reader.bean;
  2. import java.util.List;
  3. public class ActivityEventResultBean {
  4. private String code;
  5. private String count;
  6. private List<ActivityEventBean> data;
  7. private String message;
  8. private String success;
  9. public String getCode() {
  10. return code;
  11. }
  12. public void setCode(String code) {
  13. this.code = code;
  14. }
  15. public String getCount() {
  16. return count;
  17. }
  18. public void setCount(String count) {
  19. this.count = count;
  20. }
  21. public List<ActivityEventBean> getData() {
  22. return data;
  23. }
  24. public void setData(List<ActivityEventBean> data) {
  25. this.data = data;
  26. }
  27. public String getMessage() {
  28. return message;
  29. }
  30. public void setMessage(String message) {
  31. this.message = message;
  32. }
  33. public String getSuccess() {
  34. return success;
  35. }
  36. public void setSuccess(String success) {
  37. this.success = success;
  38. }
  39. public class ActivityEventBean {
  40. private String amount;
  41. private String endTime;
  42. private String redFlower;
  43. private String redFlowerTotal;
  44. private String startTime;
  45. private String voucherAmount;
  46. public String getAmount() {
  47. return amount;
  48. }
  49. public void setAmount(String amount) {
  50. this.amount = amount;
  51. }
  52. public String getEndTime() {
  53. return endTime;
  54. }
  55. public void setEndTime(String endTime) {
  56. this.endTime = endTime;
  57. }
  58. public String getRedFlower() {
  59. return redFlower;
  60. }
  61. public void setRedFlower(String redFlower) {
  62. this.redFlower = redFlower;
  63. }
  64. public String getRedFlowerTotal() {
  65. return redFlowerTotal;
  66. }
  67. public void setRedFlowerTotal(String redFlowerTotal) {
  68. this.redFlowerTotal = redFlowerTotal;
  69. }
  70. public String getStartTime() {
  71. return startTime;
  72. }
  73. public void setStartTime(String startTime) {
  74. this.startTime = startTime;
  75. }
  76. public String getVoucherAmount() {
  77. return voucherAmount;
  78. }
  79. public void setVoucherAmount(String voucherAmount) {
  80. this.voucherAmount = voucherAmount;
  81. }
  82. }
  83. }