오늘 이슈(TodayIssue) 기능 구현

- TodayIssue 모델 및 마이그레이션 추가
- TodayIssueController, TodayIssueService 구현
- TodayIssueObserverService 및 Observer 패턴 적용
- DailyReportService 연동
- Swagger API 문서 업데이트
- 라우트 추가
This commit is contained in:
2026-01-22 09:47:29 +09:00
parent 289fd3744c
commit d186a0c111
21 changed files with 1604 additions and 322 deletions

View File

@@ -34,8 +34,8 @@
* )
*
* @OA\Schema(
* schema="TodayIssueItem",
* description="오늘의 이슈 아이템",
* schema="ComprehensiveTodayIssueItem",
* description="종합분석 오늘의 이슈 아이템",
*
* @OA\Property(property="id", type="string", description="ID", example="issue-1"),
* @OA\Property(property="category", type="string", description="카테고리", example="결재요청"),
@@ -61,7 +61,7 @@
* type="array",
* description="이슈 목록",
*
* @OA\Items(ref="#/components/schemas/TodayIssueItem")
* @OA\Items(ref="#/components/schemas/ComprehensiveTodayIssueItem")
* )
* )
*