feat(point): 월별 포인트 내역 조회 API — year/month 파라미터 추가
Deploy / deploy (push) Failing after 14m43s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-07-09 23:46:24 +09:00
parent 22c492c1d2
commit 75d5c9fa9b
4 changed files with 24 additions and 2 deletions
@@ -34,4 +34,13 @@
LIMIT #{limit}
</select>
<select id="findHistoryByMonth" resultType="com.sb.web.point.PointHistoryResponse">
SELECT amount, reason, created_at
FROM point_history
WHERE member_id = #{memberId}
AND YEAR(created_at) = #{year}
AND MONTH(created_at) = #{month}
ORDER BY id DESC
</select>
</mapper>