outUserFollowList.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package com.goafanti.user.bo;
  2. public class outUserFollowList {
  3. private String nickname;
  4. private String shareType;
  5. private String channel;
  6. private String id;
  7. private String startTimes;
  8. private String contact_type;
  9. private String followName;
  10. private String followDep;
  11. private String result;
  12. private String followCount;
  13. private String guidance;
  14. private String guidanceTimes;
  15. public String getNickname() {
  16. return nickname;
  17. }
  18. public void setNickname(String nickname) {
  19. this.nickname = nickname;
  20. }
  21. public String getShareType() {
  22. return shareType;
  23. }
  24. public void setShareType(String shareType) {
  25. this.shareType = shareType;
  26. }
  27. public String getChannel() {
  28. return channel;
  29. }
  30. public void setChannel(String channel) {
  31. this.channel = channel;
  32. }
  33. public String getId() {
  34. return id;
  35. }
  36. public void setId(String id) {
  37. this.id = id;
  38. }
  39. public String getStartTimes() {
  40. return startTimes;
  41. }
  42. public void setStartTimes(String startTimes) {
  43. this.startTimes = startTimes;
  44. }
  45. public String getContact_type() {
  46. return contact_type;
  47. }
  48. public void setContact_type(String contact_type) {
  49. this.contact_type = contact_type;
  50. }
  51. public String getFollowName() {
  52. return followName;
  53. }
  54. public void setFollowName(String followName) {
  55. this.followName = followName;
  56. }
  57. public String getFollowDep() {
  58. return followDep;
  59. }
  60. public void setFollowDep(String followDep) {
  61. this.followDep = followDep;
  62. }
  63. public String getResult() {
  64. return result;
  65. }
  66. public void setResult(String result) {
  67. this.result = result;
  68. }
  69. public String getFollowCount() {
  70. return followCount;
  71. }
  72. public void setFollowCount(String followCount) {
  73. this.followCount = followCount;
  74. }
  75. public String getGuidance() {
  76. return guidance;
  77. }
  78. public void setGuidance(String guidance) {
  79. this.guidance = guidance;
  80. }
  81. public String getGuidanceTimes() {
  82. return guidanceTimes;
  83. }
  84. public void setGuidanceTimes(String guidanceTimes) {
  85. this.guidanceTimes = guidanceTimes;
  86. }
  87. }