|
|
@@ -45,33 +45,25 @@ public class CommentDetailsVo {
|
|
|
// ���۴���
|
|
|
private int commentCount;
|
|
|
|
|
|
+ // 酒店图片
|
|
|
private String coverImg;
|
|
|
|
|
|
- // 酒店图片
|
|
|
+// 酒店id
|
|
|
+ private String hotelId;
|
|
|
+
|
|
|
+ public String getHotelId() {
|
|
|
+ return hotelId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHotelId(String hotelId) {
|
|
|
+ this.hotelId = hotelId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getCoverImg() {
|
|
|
return coverImg;
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "CommentDetailsVo{" +
|
|
|
- "id='" + id + '\'' +
|
|
|
- ", userName='" + userName + '\'' +
|
|
|
- ", headPhoto='" + headPhoto + '\'' +
|
|
|
- ", score=" + score +
|
|
|
- ", liveTime='" + liveTime + '\'' +
|
|
|
- ", commentTime='" + commentTime + '\'' +
|
|
|
- ", houseName='" + houseName + '\'' +
|
|
|
- ", content='" + content + '\'' +
|
|
|
- ", url=" + url +
|
|
|
- ", hotelName='" + hotelName + '\'' +
|
|
|
- ", hotelScore=" + hotelScore +
|
|
|
- ", hotelTownship='" + hotelTownship + '\'' +
|
|
|
- ", hotelType='" + hotelType + '\'' +
|
|
|
- ", commentCount=" + commentCount +
|
|
|
- ", coverImg='" + coverImg + '\'' +
|
|
|
- '}';
|
|
|
- }
|
|
|
+
|
|
|
|
|
|
public void setCoverImg(String coverImg) {
|
|
|
this.coverImg = coverImg;
|