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