MyInterestedBo.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.goafanti.user.bo;
  2. public class MyInterestedBo {
  3. private String id;
  4. private String uid;
  5. private String name;
  6. private String introduction;
  7. private String workUnit;
  8. private String professionalTitle;
  9. private String interestCount;
  10. private Integer consultantType;
  11. private String ImgUrl;
  12. public String getId() {
  13. return id;
  14. }
  15. public void setId(String id) {
  16. this.id = id;
  17. }
  18. public String getName() {
  19. return name;
  20. }
  21. public void setName(String name) {
  22. this.name = name;
  23. }
  24. public String getIntroduction() {
  25. return introduction;
  26. }
  27. public void setIntroduction(String introduction) {
  28. this.introduction = introduction;
  29. }
  30. public String getWorkUnit() {
  31. return workUnit;
  32. }
  33. public void setWorkUnit(String workUnit) {
  34. this.workUnit = workUnit;
  35. }
  36. public String getProfessionalTitle() {
  37. return professionalTitle;
  38. }
  39. public void setProfessionalTitle(String professionalTitle) {
  40. this.professionalTitle = professionalTitle;
  41. }
  42. public String getImgUrl() {
  43. return ImgUrl;
  44. }
  45. public void setImgUrl(String imgUrl) {
  46. ImgUrl = imgUrl;
  47. }
  48. public String getInterestCount() {
  49. return interestCount;
  50. }
  51. public void setInterestCount(String interestCount) {
  52. this.interestCount = interestCount;
  53. }
  54. public String getUid() {
  55. return uid;
  56. }
  57. public void setUid(String uid) {
  58. this.uid = uid;
  59. }
  60. public Integer getConsultantType() {
  61. return consultantType;
  62. }
  63. public void setConsultantType(Integer consultantType) {
  64. this.consultantType = consultantType;
  65. }
  66. }