CommentDetailsVo.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package com.happy.vo;
  2. import java.util.List;
  3. public class CommentDetailsVo {
  4. // id
  5. private String id;
  6. // ������
  7. private String userName;
  8. // ����ͷ��
  9. private String headPhoto;
  10. // ��������
  11. private Double score;
  12. // ��סʱ��
  13. private String liveTime;
  14. // ����ʱ��
  15. private String commentTime;
  16. // ����
  17. private String houseName;
  18. // ����
  19. private String content;
  20. // ��Ƭ
  21. private List<String> url;
  22. // ��������
  23. private String hotelName;
  24. // ��������
  25. private Double hotelScore;
  26. // ��������
  27. private String hotelTownship;
  28. // �Ƶ�����
  29. private String hotelType;
  30. // ���۴���
  31. private int commentCount;
  32. // 酒店图片
  33. private String coverImg;
  34. // 酒店id
  35. private String hotelId;
  36. public String getHotelId() {
  37. return hotelId;
  38. }
  39. public void setHotelId(String hotelId) {
  40. this.hotelId = hotelId;
  41. }
  42. public String getCoverImg() {
  43. return coverImg;
  44. }
  45. public void setCoverImg(String coverImg) {
  46. this.coverImg = coverImg;
  47. }
  48. public String getId() {
  49. return id;
  50. }
  51. public void setId(String id) {
  52. this.id = id;
  53. }
  54. public String getUserName() {
  55. return userName;
  56. }
  57. public void setUserName(String userName) {
  58. this.userName = userName;
  59. }
  60. public String getHeadPhoto() {
  61. return headPhoto;
  62. }
  63. public void setHeadPhoto(String headPhoto) {
  64. this.headPhoto = headPhoto;
  65. }
  66. public Double getScore() {
  67. return score;
  68. }
  69. public void setScore(Double score) {
  70. this.score = score;
  71. }
  72. public String getLiveTime() {
  73. return liveTime;
  74. }
  75. public void setLiveTime(String liveTime) {
  76. this.liveTime = liveTime;
  77. }
  78. public String getCommentTime() {
  79. return commentTime;
  80. }
  81. public void setCommentTime(String commentTime) {
  82. this.commentTime = commentTime;
  83. }
  84. public String getHouseName() {
  85. return houseName;
  86. }
  87. public void setHouseName(String houseName) {
  88. this.houseName = houseName;
  89. }
  90. public String getContent() {
  91. return content;
  92. }
  93. public void setContent(String content) {
  94. this.content = content;
  95. }
  96. public List<String> getUrl() {
  97. return url;
  98. }
  99. public void setUrl(List<String> url) {
  100. this.url = url;
  101. }
  102. public String getHotelName() {
  103. return hotelName;
  104. }
  105. public void setHotelName(String hotelName) {
  106. this.hotelName = hotelName;
  107. }
  108. public Double getHotelScore() {
  109. return hotelScore;
  110. }
  111. public void setHotelScore(Double hotelScore) {
  112. this.hotelScore = hotelScore;
  113. }
  114. public String getHotelTownship() {
  115. return hotelTownship;
  116. }
  117. public void setHotelTownship(String hotelTownship) {
  118. this.hotelTownship = hotelTownship;
  119. }
  120. public String getHotelType() {
  121. return hotelType;
  122. }
  123. public void setHotelType(String hotelType) {
  124. this.hotelType = hotelType;
  125. }
  126. public int getCommentCount() {
  127. return commentCount;
  128. }
  129. public void setCommentCount(int commentCount) {
  130. this.commentCount = commentCount;
  131. }
  132. }