| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- 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<String> 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<String> getUrl() {
- return url;
- }
- public void setUrl(List<String> 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;
- }
- }
|