fix: equals 판단 실패 해결을 위한ScheduleFactory 내 나노초 제거 추가

This commit is contained in:
이상진 2025-09-18 15:26:41 +09:00
parent b8cf1d6c9d
commit 54648a6c04

View File

@ -62,7 +62,7 @@ object ScheduleEntityFactory {
return ScheduleEntity( return ScheduleEntity(
id = id, id = id,
date = date, date = date,
time = time, time = time.withSecond(0).withNano(0),
storeId = storeId, storeId = storeId,
themeId = themeId, themeId = themeId,
status = ScheduleStatus.AVAILABLE status = ScheduleStatus.AVAILABLE