blob: 6db4e67024aebd75caf58930cc50ea563da105f2 [file] [log] [blame]
package com.example.g8backend.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.g8backend.entity.Post;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface PostMapper extends BaseMapper<Post> {
List<Post> getPostsByUserId(@Param("userId") Long userId);
}