UserPartnerDetailBo.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. public String getUsername() {
  14. return username;
  15. }
  16. public void setUsername(String username) {
  17. this.username = username;
  18. }
  19. public Integer getProvince() {
  20. return province;
  21. }
  22. public void setProvince(Integer province) {
  23. this.province = province;
  24. }
  25. public Integer getCity() {
  26. return city;
  27. }
  28. public void setCity(Integer city) {
  29. this.city = city;
  30. }
  31. public Integer getArea() {
  32. return area;
  33. }
  34. public void setArea(Integer area) {
  35. this.area = area;
  36. }
  37. public String getEngagedField() {
  38. return engagedField;
  39. }
  40. public void setEngagedField(String engagedField) {
  41. this.engagedField = engagedField;
  42. }
  43. public String getPersonalProfile() {
  44. return personalProfile;
  45. }
  46. public void setPersonalProfile(String personalProfile) {
  47. this.personalProfile = personalProfile;
  48. }
  49. public Integer getLevel() {
  50. return level;
  51. }
  52. public void setLevel(Integer level) {
  53. this.level = level;
  54. }
  55. public String getAbilityLabel() {
  56. return abilityLabel;
  57. }
  58. public void setAbilityLabel(String abilityLabel) {
  59. this.abilityLabel = abilityLabel;
  60. }
  61. public String getPersonPortraitUrl() {
  62. return personPortraitUrl;
  63. }
  64. public void setPersonPortraitUrl(String personPortraitUrl) {
  65. this.personPortraitUrl = personPortraitUrl;
  66. }
  67. public String getLifePhotoUrl() {
  68. return lifePhotoUrl;
  69. }
  70. public void setLifePhotoUrl(String lifePhotoUrl) {
  71. this.lifePhotoUrl = lifePhotoUrl;
  72. }
  73. }