[#52] 만료 예약 / 일정 스케쥴링 작업 추가 및 동시성 처리를 위한 일부 코드 수정 #53

Merged
pricelees merged 18 commits from refactor/#52 into main 2025-10-04 08:40:37 +00:00
Showing only changes of commit 267b93bdca - Show all commits

View File

@ -50,7 +50,7 @@ interface ScheduleRepository : JpaRepository<ScheduleEntity, Long> {
WHERE WHERE
s.storeId = :storeId s.storeId = :storeId
AND s.date = :date AND s.date = :date
AND (:themeId IS NULL OR t._id = :themeId) AND (:themeId IS NULL OR s.themeId = :themeId)
""" """
) )
fun findStoreSchedulesWithThemeByDate( fun findStoreSchedulesWithThemeByDate(