feat: Meeting Service AI 통합 API 개발 완료

## 구현 내용
- 참석자별 회의록 조회 API (GET /api/meetings/{meetingId}/ai/participant-minutes)
- 안건별 섹션 조회 API (GET /api/meetings/{meetingId}/ai/agenda-sections)
- 회의 통계 조회 API (GET /api/meetings/{meetingId}/ai/statistics)

## DB 스키마 변경
- V4 마이그레이션: agenda_sections 테이블에 todos JSON 컬럼 추가
- AI가 추출한 Todo를 안건별로 저장하는 구조

## 주요 특징
- AI Service가 한 번에 요약 + Todo 추출
- 프로토타입 기반 요구사항 반영 (불필요한 통계 제거)
- Todo 수를 agenda_sections의 todos 컬럼에서 집계

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Minseo-Jo
2025-10-28 14:22:59 +09:00
parent 92e4863fc7
commit 79036128ec
18 changed files with 1164 additions and 0 deletions
@@ -0,0 +1,37 @@
-- ========================================
-- V4: agenda_sections 테이블에 todos 컬럼 추가
-- ========================================
-- 작성일: 2025-10-28
-- 설명: AI가 추출한 Todo를 안건별 섹션에 저장
-- ========================================
-- 1. agenda_sections 테이블에 todos 컬럼 추가
-- ========================================
ALTER TABLE agenda_sections
ADD COLUMN IF NOT EXISTS todos JSON;
-- 코멘트 추가
COMMENT ON COLUMN agenda_sections.todos IS 'AI 추출 Todo 목록 (JSON: [{title, assignee, dueDate, description, priority}])';
-- ========================================
-- 2. 샘플 데이터 구조 (참고용)
-- ========================================
--
-- todos JSON 구조:
-- [
-- {
-- "title": "시장 조사 보고서 작성",
-- "assignee": "김민준",
-- "dueDate": "2025-02-15",
-- "description": "20-30대 타겟 시장 조사",
-- "priority": "HIGH"
-- },
-- {
-- "title": "UI/UX 개선안 초안 작성",
-- "assignee": "이서연",
-- "dueDate": "2025-02-20",
-- "description": "모바일 우선 UI 개선",
-- "priority": "MEDIUM"
-- }
-- ]