feat(uiws): UIWS 업무모듈(업무일지·일정·쪽지·통계)+2FA 이식

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
DESKTOP-TKLFCPR\ython 2026-06-20 20:42:24 +09:00
parent b1632322a8
commit a3226bda86
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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 {