- point_history 최신순 조회(최대 100건), PointHistoryResponse - PointService.getHistory, 인터셉터 경로 등록 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -21,4 +21,12 @@
|
||||
SELECT points FROM member WHERE id = #{memberId}
|
||||
</select>
|
||||
|
||||
<select id="findHistory" resultType="com.sb.web.point.PointHistoryResponse">
|
||||
SELECT amount, reason, created_at
|
||||
FROM point_history
|
||||
WHERE member_id = #{memberId}
|
||||
ORDER BY id DESC
|
||||
LIMIT #{limit}
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user