| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- package com.goafanti.user.bo;
- public class UserPartnerDetailBo {
- private String username;
- private Integer province;
- private Integer city;
- private Integer area;
- private String engagedField;
- private String personalProfile;
- private Integer level;
- private String abilityLabel;
- private String personPortraitUrl;
- private String lifePhotoUrl;
- public String getUsername() {
- return username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- public Integer getProvince() {
- return province;
- }
- public void setProvince(Integer province) {
- this.province = province;
- }
- public Integer getCity() {
- return city;
- }
- public void setCity(Integer city) {
- this.city = city;
- }
- public Integer getArea() {
- return area;
- }
- public void setArea(Integer area) {
- this.area = area;
- }
- public String getEngagedField() {
- return engagedField;
- }
- public void setEngagedField(String engagedField) {
- this.engagedField = engagedField;
- }
- public String getPersonalProfile() {
- return personalProfile;
- }
- public void setPersonalProfile(String personalProfile) {
- this.personalProfile = personalProfile;
- }
- public Integer getLevel() {
- return level;
- }
- public void setLevel(Integer level) {
- this.level = level;
- }
- public String getAbilityLabel() {
- return abilityLabel;
- }
- public void setAbilityLabel(String abilityLabel) {
- this.abilityLabel = abilityLabel;
- }
- public String getPersonPortraitUrl() {
- return personPortraitUrl;
- }
- public void setPersonPortraitUrl(String personPortraitUrl) {
- this.personPortraitUrl = personPortraitUrl;
- }
- public String getLifePhotoUrl() {
- return lifePhotoUrl;
- }
- public void setLifePhotoUrl(String lifePhotoUrl) {
- this.lifePhotoUrl = lifePhotoUrl;
- }
-
-
- }
|