wuchimedes | e5722e3 | 2025-04-13 17:38:50 +0800 | [diff] [blame] | 1 | package com.example.g8backend.service; |
2 | |||||
3 | import com.example.g8backend.entity.Post; | ||||
4 | import com.baomidou.mybatisplus.extension.service.IService; | ||||
5 | |||||
6 | import java.util.List; | ||||
7 | |||||
8 | public interface IPostService extends IService<Post> { | ||||
9 | List<Post> getPostsByUserId(Long userId); | ||||
10 | } |