| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.goafanti.app.bo;
- public class consultantListBo {
- private String id;
- private String username;
- private String headPortraitUrl;
- private String introduction;
- private String consultant;
- private String interest;
- private String reservationCount;
- private String easemobName;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getUsername() {
- return username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- public String getHeadPortraitUrl() {
- return headPortraitUrl;
- }
- public void setHeadPortraitUrl(String headPortraitUrl) {
- this.headPortraitUrl = headPortraitUrl;
- }
- public String getIntroduction() {
- return introduction;
- }
- public void setIntroduction(String introduction) {
- this.introduction = introduction;
- }
-
- public String getConsultant() {
- return consultant;
- }
- public void setConsultant(String consultant) {
- this.consultant = consultant;
- }
- public String getInterest() {
- return interest;
- }
- public void setInterest(String interest) {
- this.interest = interest;
- }
- public String getReservationCount() {
- return reservationCount;
- }
- public void setReservationCount(String reservationCount) {
- this.reservationCount = reservationCount;
- }
- public String getEasemobName() {
- return easemobName;
- }
- public void setEasemobName(String easemobName) {
- this.easemobName = easemobName;
- }
- }
|