PlayLogBean.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. package com.edufound.reader.bean;
  2. public class PlayLogBean {
  3. private String channel;
  4. private long exampleId;
  5. private String feature;
  6. private String gmtCreated;
  7. private String gmtModified;
  8. private String grade;
  9. private long id;
  10. private String playDate;
  11. private int playStopTime;
  12. private String readUid;
  13. private String status;
  14. private String title;
  15. private String type;
  16. private String uid;
  17. private String url;
  18. private long userReadId;
  19. public void setChannel(String channel) {
  20. this.channel = channel;
  21. }
  22. public String getChannel() {
  23. return channel;
  24. }
  25. public void setExampleId(long exampleId) {
  26. this.exampleId = exampleId;
  27. }
  28. public long getExampleId() {
  29. return exampleId;
  30. }
  31. public void setFeature(String feature) {
  32. this.feature = feature;
  33. }
  34. public String getFeature() {
  35. return feature;
  36. }
  37. public void setGmtCreated(String gmtCreated) {
  38. this.gmtCreated = gmtCreated;
  39. }
  40. public String getGmtCreated() {
  41. return gmtCreated;
  42. }
  43. public void setGmtModified(String gmtModified) {
  44. this.gmtModified = gmtModified;
  45. }
  46. public String getGmtModified() {
  47. return gmtModified;
  48. }
  49. public void setGrade(String grade) {
  50. this.grade = grade;
  51. }
  52. public String getGrade() {
  53. return grade;
  54. }
  55. public void setId(long id) {
  56. this.id = id;
  57. }
  58. public long getId() {
  59. return id;
  60. }
  61. public void setPlayDate(String playDate) {
  62. this.playDate = playDate;
  63. }
  64. public String getPlayDate() {
  65. return playDate;
  66. }
  67. public void setPlayStopTime(int playStopTime) {
  68. this.playStopTime = playStopTime;
  69. }
  70. public int getPlayStopTime() {
  71. return playStopTime;
  72. }
  73. public void setReadUid(String readUid) {
  74. this.readUid = readUid;
  75. }
  76. public String getReadUid() {
  77. return readUid;
  78. }
  79. public void setStatus(String status) {
  80. this.status = status;
  81. }
  82. public String getStatus() {
  83. return status;
  84. }
  85. public void setTitle(String title) {
  86. this.title = title;
  87. }
  88. public String getTitle() {
  89. return title;
  90. }
  91. public void setType(String type) {
  92. this.type = type;
  93. }
  94. public String getType() {
  95. return type;
  96. }
  97. public void setUid(String uid) {
  98. this.uid = uid;
  99. }
  100. public String getUid() {
  101. return uid;
  102. }
  103. public void setUrl(String url) {
  104. this.url = url;
  105. }
  106. public String getUrl() {
  107. return url;
  108. }
  109. public void setUserReadId(long userReadId) {
  110. this.userReadId = userReadId;
  111. }
  112. public long getUserReadId() {
  113. return userReadId;
  114. }
  115. }