|
|
@@ -7,6 +7,7 @@ public class consultantListBo {
|
|
|
private String introduction;
|
|
|
private String consultant;
|
|
|
private String interest;
|
|
|
+ private String reservationCount;
|
|
|
public String getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -44,4 +45,10 @@ public class consultantListBo {
|
|
|
public void setInterest(String interest) {
|
|
|
this.interest = interest;
|
|
|
}
|
|
|
+ public String getReservationCount() {
|
|
|
+ return reservationCount;
|
|
|
+ }
|
|
|
+ public void setReservationCount(String reservationCount) {
|
|
|
+ this.reservationCount = reservationCount;
|
|
|
+ }
|
|
|
}
|