From af09bf35c051a7e68ae8582e18b949d52a081a86 Mon Sep 17 00:00:00 2001 From: yeseong0412 Date: Thu, 17 Oct 2024 16:50:20 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20::=20DateTime=20=EC=A1=B0=ED=9A=8C=20?= =?UTF-8?q?=ED=98=95=ED=83=9C=20=EB=B3=80=EA=B2=BD=20#316?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 0000-00-00 으로 요청 형태 -> 20201010 형태로 변경 --- .../seugi/api/global/infra/nice/school/NiceSchoolService.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/seugi/api/global/infra/nice/school/NiceSchoolService.kt b/src/main/kotlin/com/seugi/api/global/infra/nice/school/NiceSchoolService.kt index a90604976..d86037662 100644 --- a/src/main/kotlin/com/seugi/api/global/infra/nice/school/NiceSchoolService.kt +++ b/src/main/kotlin/com/seugi/api/global/infra/nice/school/NiceSchoolService.kt @@ -93,8 +93,8 @@ class NiceSchoolService( pSize = 1000, scCode = schoolInfo.scCode, sdCode = schoolInfo.sdCode, - startDate = startDate, - endDate = endDate + startDate = startDate.replace("-", ""), + endDate = endDate.replace("-", "") ).hisTimetable?.get(1)?.row }