EventListBean.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. package com.edufound.reader.bean;
  2. public class EventListBean {
  3. private String amount;
  4. private long endTime;
  5. private long gmtCreated;
  6. private long gmtModified;
  7. private int id;
  8. private String img;
  9. private String partakeChannel;
  10. private String redFlower;
  11. private int sort;
  12. private long startTime;
  13. private String status;
  14. private String templateCode;
  15. private int type;
  16. private String url;
  17. public void setAmount(String amount) {
  18. this.amount = amount;
  19. }
  20. public String getAmount() {
  21. return amount;
  22. }
  23. public void setEndTime(long endTime) {
  24. this.endTime = endTime;
  25. }
  26. public long getEndTime() {
  27. return endTime;
  28. }
  29. public void setGmtCreated(long gmtCreated) {
  30. this.gmtCreated = gmtCreated;
  31. }
  32. public long getGmtCreated() {
  33. return gmtCreated;
  34. }
  35. public void setGmtModified(long gmtModified) {
  36. this.gmtModified = gmtModified;
  37. }
  38. public long getGmtModified() {
  39. return gmtModified;
  40. }
  41. public void setId(int id) {
  42. this.id = id;
  43. }
  44. public int getId() {
  45. return id;
  46. }
  47. public void setImg(String img) {
  48. this.img = img;
  49. }
  50. public String getImg() {
  51. return img;
  52. }
  53. public void setPartakeChannel(String partakeChannel) {
  54. this.partakeChannel = partakeChannel;
  55. }
  56. public String getPartakeChannel() {
  57. return partakeChannel;
  58. }
  59. public void setRedFlower(String redFlower) {
  60. this.redFlower = redFlower;
  61. }
  62. public String getRedFlower() {
  63. return redFlower;
  64. }
  65. public void setSort(int sort) {
  66. this.sort = sort;
  67. }
  68. public int getSort() {
  69. return sort;
  70. }
  71. public void setStartTime(long startTime) {
  72. this.startTime = startTime;
  73. }
  74. public long getStartTime() {
  75. return startTime;
  76. }
  77. public void setStatus(String status) {
  78. this.status = status;
  79. }
  80. public String getStatus() {
  81. return status;
  82. }
  83. public void setTemplateCode(String templateCode) {
  84. this.templateCode = templateCode;
  85. }
  86. public String getTemplateCode() {
  87. return templateCode;
  88. }
  89. public void setType(int type) {
  90. this.type = type;
  91. }
  92. public int getType() {
  93. return type;
  94. }
  95. public void setUrl(String url) {
  96. this.url = url;
  97. }
  98. public String getUrl() {
  99. return url;
  100. }
  101. }