MyInfoBean.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.edufound.reader.bean;
  2. public class MyInfoBean {
  3. private String commentAmount;
  4. private int fansAmount;
  5. private String favoritesAmount;
  6. private int integralAmount;
  7. private boolean like;
  8. private int likeAmount;
  9. private int playAmount;
  10. private int readAmount;
  11. private int unfinishedAmount;
  12. private int unreadAmount;
  13. private UserBean user;
  14. private String walletAmount;
  15. public void setCommentAmount(String commentAmount) {
  16. this.commentAmount = commentAmount;
  17. }
  18. public String getCommentAmount() {
  19. return this.commentAmount;
  20. }
  21. public void setFansAmount(int fansAmount) {
  22. this.fansAmount = fansAmount;
  23. }
  24. public int getFansAmount() {
  25. return this.fansAmount;
  26. }
  27. public void setFavoritesAmount(String favoritesAmount) {
  28. this.favoritesAmount = favoritesAmount;
  29. }
  30. public String getFavoritesAmount() {
  31. return this.favoritesAmount;
  32. }
  33. public void setIntegralAmount(int integralAmount) {
  34. this.integralAmount = integralAmount;
  35. }
  36. public int getIntegralAmount() {
  37. return this.integralAmount;
  38. }
  39. public void setLike(boolean like) {
  40. this.like = like;
  41. }
  42. public boolean getLike() {
  43. return this.like;
  44. }
  45. public void setLikeAmount(int likeAmount) {
  46. this.likeAmount = likeAmount;
  47. }
  48. public int getLikeAmount() {
  49. return this.likeAmount;
  50. }
  51. public void setPlayAmount(int playAmount) {
  52. this.playAmount = playAmount;
  53. }
  54. public int getPlayAmount() {
  55. return this.playAmount;
  56. }
  57. public void setReadAmount(int readAmount) {
  58. this.readAmount = readAmount;
  59. }
  60. public int getReadAmount() {
  61. return this.readAmount;
  62. }
  63. public void setUnfinishedAmount(int unfinishedAmount) {
  64. this.unfinishedAmount = unfinishedAmount;
  65. }
  66. public int getUnfinishedAmount() {
  67. return this.unfinishedAmount;
  68. }
  69. public void setUnreadAmount(int unreadAmount) {
  70. this.unreadAmount = unreadAmount;
  71. }
  72. public int getUnreadAmount() {
  73. return this.unreadAmount;
  74. }
  75. public void setUser(UserBean user) {
  76. this.user = user;
  77. }
  78. public UserBean getUser() {
  79. return this.user;
  80. }
  81. public void setWalletAmount(String walletAmount) {
  82. this.walletAmount = walletAmount;
  83. }
  84. public String getWalletAmount() {
  85. return this.walletAmount;
  86. }
  87. }