blob: 6db4e67024aebd75caf58930cc50ea563da105f2 [file] [log] [blame]
wuchimedese5722e32025-04-13 17:38:50 +08001package com.example.g8backend.mapper;
2
3import com.baomidou.mybatisplus.core.mapper.BaseMapper;
4import com.example.g8backend.entity.Post;
5import org.apache.ibatis.annotations.Mapper;
6import org.apache.ibatis.annotations.Param;
7
8import java.util.List;
9
10@Mapper
11public interface PostMapper extends BaseMapper<Post> {
12 List<Post> getPostsByUserId(@Param("userId") Long userId);
13}