package com.happy.vo; import java.util.List; public class CommentDetailsVo { // id private String id; // ������ private String userName; // ����ͷ�� private String headPhoto; // �������� private Double score; // ��סʱ�� private String liveTime; // ����ʱ�� private String commentTime; // ���� private String houseName; // ���� private String content; // ��Ƭ private List url; // �������� private String hotelName; // �������� private Double hotelScore; // �������� private String hotelTownship; // �Ƶ����� private String hotelType; // ���۴��� 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; } public void setCoverImg(String coverImg) { this.coverImg = coverImg; } 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 getHeadPhoto() { return headPhoto; } public void setHeadPhoto(String headPhoto) { this.headPhoto = headPhoto; } public Double getScore() { return score; } public void setScore(Double score) { this.score = score; } public String getLiveTime() { return liveTime; } public void setLiveTime(String liveTime) { this.liveTime = liveTime; } public String getCommentTime() { return commentTime; } public void setCommentTime(String commentTime) { this.commentTime = commentTime; } public String getHouseName() { return houseName; } public void setHouseName(String houseName) { this.houseName = houseName; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public List getUrl() { return url; } public void setUrl(List url) { this.url = url; } public String getHotelName() { return hotelName; } public void setHotelName(String hotelName) { this.hotelName = hotelName; } public Double getHotelScore() { return hotelScore; } public void setHotelScore(Double hotelScore) { this.hotelScore = hotelScore; } public String getHotelTownship() { return hotelTownship; } public void setHotelTownship(String hotelTownship) { this.hotelTownship = hotelTownship; } public String getHotelType() { return hotelType; } public void setHotelType(String hotelType) { this.hotelType = hotelType; } public int getCommentCount() { return commentCount; } public void setCommentCount(int commentCount) { this.commentCount = commentCount; } }