package com.happy.dao; import com.happy.Model.BookingComment; import com.happy.vo.*; import java.util.List; public interface BookingCommentDao { String insertBookingComment(BookingComment bookingComment); List queryPage(String sqlx, int page, int rows); int queryTotal(String sqlx); List getByBookId(String bookId); List getByParentId(String parentId); List getByCommentId(String commentId); int insterCommpent(BookingComment bookingComment); int updateCommpentStatus(BookingComment bookingComment); BookingComment queryById(String id); int update(BookingComment bookingComment); List evaluatePage(String hotelId, int page, int rows); int evaluateTotal(String hotelId); List evaluatePagepicture(String hotelId, int page, int rows); int evaluateTotalpicture(String hotelId); List evaluatePageComment(String hotelId, int page, int rows); int evaluateTotalComment(String hotelId); EvaluatePageVo evaluateScore(String hotelId); List commentVoList(String bookingCommentId); CommentDetailsVo commentDetails(String bookingCommentId); List personageNotCommentPage(String usersId, int page, int rows); List personageCommentPage(String usersId, int page, int rows); int personageNotCommentTotal(String usersId); int personageCommentTotal(String usersId); PersonageDetailsVo personageDetails(String bookingCommentId); BookingComment getBycommentId(String commentId); }