feat: 포인트 적립내역 조회 — GET /auth/point-history
CI / build (push) Failing after 12m7s

- point_history 최신순 조회(최대 100건), PointHistoryResponse
- PointService.getHistory, 인터셉터 경로 등록

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-28 14:44:24 +09:00
parent 629ab1f811
commit d1c13e7cc1
6 changed files with 44 additions and 1 deletions
@@ -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>