SignBean.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.edufound.reader.bean;
  2. public class SignBean {
  3. private String channel;
  4. private int continuousDay;
  5. private int count;
  6. private String currentTime;
  7. private String gmtCreated;
  8. private String gmtModified;
  9. private long id;
  10. private boolean isSign;
  11. private String loginDay;
  12. private String uid;
  13. public void setChannel(String channel) {
  14. this.channel = channel;
  15. }
  16. public String getChannel() {
  17. return channel;
  18. }
  19. public void setContinuousDay(int continuousDay) {
  20. this.continuousDay = continuousDay;
  21. }
  22. public int getContinuousDay() {
  23. return continuousDay;
  24. }
  25. public void setCount(int count) {
  26. this.count = count;
  27. }
  28. public int getCount() {
  29. return count;
  30. }
  31. public void setCurrentTime(String currentTime) {
  32. this.currentTime = currentTime;
  33. }
  34. public String getCurrentTime() {
  35. return currentTime;
  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 setId(long id) {
  50. this.id = id;
  51. }
  52. public long getId() {
  53. return id;
  54. }
  55. public void setIsSign(boolean isSign) {
  56. this.isSign = isSign;
  57. }
  58. public boolean getIsSign() {
  59. return isSign;
  60. }
  61. public void setLoginDay(String loginDay) {
  62. this.loginDay = loginDay;
  63. }
  64. public String getLoginDay() {
  65. return loginDay;
  66. }
  67. public void setUid(String uid) {
  68. this.uid = uid;
  69. }
  70. public String getUid() {
  71. return uid;
  72. }
  73. }