consultantListBo.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.goafanti.app.bo;
  2. public class consultantListBo {
  3. private String id;
  4. private String username;
  5. private String headPortraitUrl;
  6. private String introduction;
  7. private String consultant;
  8. private String interest;
  9. private String reservationCount;
  10. private String easemobName;
  11. public String getId() {
  12. return id;
  13. }
  14. public void setId(String id) {
  15. this.id = id;
  16. }
  17. public String getUsername() {
  18. return username;
  19. }
  20. public void setUsername(String username) {
  21. this.username = username;
  22. }
  23. public String getHeadPortraitUrl() {
  24. return headPortraitUrl;
  25. }
  26. public void setHeadPortraitUrl(String headPortraitUrl) {
  27. this.headPortraitUrl = headPortraitUrl;
  28. }
  29. public String getIntroduction() {
  30. return introduction;
  31. }
  32. public void setIntroduction(String introduction) {
  33. this.introduction = introduction;
  34. }
  35. public String getConsultant() {
  36. return consultant;
  37. }
  38. public void setConsultant(String consultant) {
  39. this.consultant = consultant;
  40. }
  41. public String getInterest() {
  42. return interest;
  43. }
  44. public void setInterest(String interest) {
  45. this.interest = interest;
  46. }
  47. public String getReservationCount() {
  48. return reservationCount;
  49. }
  50. public void setReservationCount(String reservationCount) {
  51. this.reservationCount = reservationCount;
  52. }
  53. public String getEasemobName() {
  54. return easemobName;
  55. }
  56. public void setEasemobName(String easemobName) {
  57. this.easemobName = easemobName;
  58. }
  59. }