wuchimedes | e5722e3 | 2025-04-13 17:38:50 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||||
3 | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
4 | |||||
5 | <mapper namespace="com.example.g8backend.mapper.PostMapper"> | ||||
6 | <select id="getPostsByUserId" resultType="com.example.g8backend.entity.Post"> | ||||
7 | SELECT * FROM posts WHERE user_id = #{userId} | ||||
8 | </select> | ||||
9 | </mapper> |