|
|
@@ -13,6 +13,8 @@ public class UserIdentityRecommended {
|
|
|
private String headPortraitUrl;
|
|
|
/**预约次数*/
|
|
|
private String reservationCount;
|
|
|
+ /**专家职位*/
|
|
|
+ private String professionalTitle;
|
|
|
public String getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -49,6 +51,12 @@ public class UserIdentityRecommended {
|
|
|
public void setReservationCount(String reservationCount) {
|
|
|
this.reservationCount = reservationCount;
|
|
|
}
|
|
|
+ public String getProfessionalTitle() {
|
|
|
+ return professionalTitle;
|
|
|
+ }
|
|
|
+ public void setProfessionalTitle(String professionalTitle) {
|
|
|
+ this.professionalTitle = professionalTitle;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|