夜雨声烦 | 070c05a | 2025-05-13 20:33:50 +0800 | [diff] [blame^] | 1 | package com.example.g8backend.service; |
2 | |||||
3 | import com.example.g8backend.dto.ApiResponse; | ||||
4 | |||||
5 | public interface IPostRatingService { | ||||
6 | void ratePost(Long userId, Long postId, Integer rating); | ||||
7 | Double getAverageRating(Long postId); | ||||
8 | |||||
9 | Long getRatingUserCount(Long postId); | ||||
10 | } |