UserPartnerDetailBo.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package com.goafanti.user.bo;
  2. public class UserPartnerDetailBo {
  3. private String username;
  4. private Integer province;
  5. private Integer city;
  6. private Integer area;
  7. private String engagedField;
  8. private String personalProfile;
  9. private Integer level;
  10. private String abilityLabel;
  11. private String personPortraitUrl;
  12. private String lifePhotoUrl;
  13. private String interestId;
  14. public String getInterestId() {
  15. return interestId;
  16. }
  17. public void setInterestId(String interestId) {
  18. this.interestId = interestId;
  19. }
  20. public String getUsername() {
  21. return username;
  22. }
  23. public void setUsername(String username) {
  24. this.username = username;
  25. }
  26. public Integer getProvince() {
  27. return province;
  28. }
  29. public void setProvince(Integer province) {
  30. this.province = province;
  31. }
  32. public Integer getCity() {
  33. return city;
  34. }
  35. public void setCity(Integer city) {
  36. this.city = city;
  37. }
  38. public Integer getArea() {
  39. return area;
  40. }
  41. public void setArea(Integer area) {
  42. this.area = area;
  43. }
  44. public String getEngagedField() {
  45. return engagedField;
  46. }
  47. public void setEngagedField(String engagedField) {
  48. this.engagedField = engagedField;
  49. }
  50. public String getPersonalProfile() {
  51. return personalProfile;
  52. }
  53. public void setPersonalProfile(String personalProfile) {
  54. this.personalProfile = personalProfile;
  55. }
  56. public Integer getLevel() {
  57. return level;
  58. }
  59. public void setLevel(Integer level) {
  60. this.level = level;
  61. }
  62. public String getAbilityLabel() {
  63. return abilityLabel;
  64. }
  65. public void setAbilityLabel(String abilityLabel) {
  66. this.abilityLabel = abilityLabel;
  67. }
  68. public String getPersonPortraitUrl() {
  69. return personPortraitUrl;
  70. }
  71. public void setPersonPortraitUrl(String personPortraitUrl) {
  72. this.personPortraitUrl = personPortraitUrl;
  73. }
  74. public String getLifePhotoUrl() {
  75. return lifePhotoUrl;
  76. }
  77. public void setLifePhotoUrl(String lifePhotoUrl) {
  78. this.lifePhotoUrl = lifePhotoUrl;
  79. }
  80. }