From a3226bda8608a2104c20f030d62dc8423037e627 Mon Sep 17 00:00:00 2001 From: "DESKTOP-TKLFCPR\\ython" Date: Sat, 20 Jun 2026 20:42:24 +0900 Subject: [PATCH] =?UTF-8?q?feat(uiws):=20UIWS=20=EC=97=85=EB=AC=B4?= =?UTF-8?q?=EB=AA=A8=EB=93=88(=EC=97=85=EB=AC=B4=EC=9D=BC=EC=A7=80=C2=B7?= =?UTF-8?q?=EC=9D=BC=EC=A0=95=C2=B7=EC=AA=BD=EC=A7=80=C2=B7=ED=86=B5?= =?UTF-8?q?=EA=B3=84)+2FA=20=EC=9D=B4=EC=8B=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 --- .../mall/uiws/schedule/controller/ScheduleController.java | 2 +- .../com/zioinfo/mall/uiws/schedule/service/ScheduleService.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/main/java/com/zioinfo/mall/uiws/schedule/controller/ScheduleController.java b/backend/src/main/java/com/zioinfo/mall/uiws/schedule/controller/ScheduleController.java index 3ce0690..df9493a 100644 --- a/backend/src/main/java/com/zioinfo/mall/uiws/schedule/controller/ScheduleController.java +++ b/backend/src/main/java/com/zioinfo/mall/uiws/schedule/controller/ScheduleController.java @@ -17,7 +17,7 @@ import java.util.List; * UIWS 이식 — 일정(모듈 02). 인증 필수(/api/schedules). 원본 엔드포인트 보존. */ @Tag(name = "UIWS-일정", description = "UIWS 이식: 개인/부서 일정") -@RestController +@RestController("uiwsScheduleController") @RequestMapping("/api/schedules") @RequiredArgsConstructor public class ScheduleController { diff --git a/backend/src/main/java/com/zioinfo/mall/uiws/schedule/service/ScheduleService.java b/backend/src/main/java/com/zioinfo/mall/uiws/schedule/service/ScheduleService.java index 8ecfa4d..82b279f 100644 --- a/backend/src/main/java/com/zioinfo/mall/uiws/schedule/service/ScheduleService.java +++ b/backend/src/main/java/com/zioinfo/mall/uiws/schedule/service/ScheduleService.java @@ -24,7 +24,7 @@ import java.util.stream.Collectors; * 일정(모듈 02) 서비스 — 원본 com.urp.uiws.schedule.service.ScheduleService 를 MyBatis 변환 이식. * 달력(month/week/day)·전체목록·검색팝업·CRUD. 첨부 연계(attachmentIds). */ -@Service +@Service("uiwsScheduleService") @RequiredArgsConstructor public class ScheduleService {