mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 20:46:24 +00:00
49 lines
2.3 KiB
Plaintext
49 lines
2.3 KiB
Plaintext
graph TB
|
|
%% KT AI 기반 소상공인 이벤트 자동 생성 서비스 - 논리 아키텍처 (간소화 버전)
|
|
|
|
%% Service Layer
|
|
subgraph "Service Layer"
|
|
UserSvc["User Service<br/>• 회원가입/로그인<br/>• 프로필 관리<br/>• 사업자번호 검증"]
|
|
EventSvc["Event Service<br/>• 이벤트 CRUD<br/>• 플로우 오케스트레이션<br/>• 상태 관리"]
|
|
AISvc["AI Service<br/>• 트렌드 분석<br/>• 3가지 이벤트 추천<br/>• 비동기 Job 처리"]
|
|
ContentSvc["Content Service<br/>• SNS 이미지 생성<br/>• 3가지 스타일<br/>• 비동기 Job 처리"]
|
|
DistSvc["Distribution Service<br/>• 다중 채널 배포<br/>• Circuit Breaker<br/>• 배포 모니터링"]
|
|
PartSvc["Participation Service<br/>• 이벤트 참여<br/>• 참여자 관리<br/>• 당첨자 추첨"]
|
|
AnalSvc["Analytics Service<br/>• 실시간 대시보드<br/>• 채널별 성과<br/>• ROI 분석"]
|
|
end
|
|
|
|
%% Message Queue
|
|
Queue["Message Queue<br/>• AI 작업 큐<br/>• 이미지 생성 큐<br/>• 배포 작업 큐"]
|
|
|
|
%% External System
|
|
External["외부시스템<br/>• 국세청 API<br/>• AI API<br/>• 이미지 생성 API<br/>• 배포 채널 APIs"]
|
|
|
|
%% Service to Queue
|
|
EventSvc -.->|AI 추천 요청| Queue
|
|
EventSvc -.->|이미지 생성 요청| Queue
|
|
Queue -.->|비동기 작업 처리| AISvc
|
|
Queue -.->|비동기 작업 처리| ContentSvc
|
|
|
|
%% Service to Service
|
|
EventSvc -->|배포 시작| DistSvc
|
|
PartSvc -->|이벤트 정보 조회| EventSvc
|
|
AnalSvc -->|이벤트 정보| EventSvc
|
|
AnalSvc -->|참여자 데이터| PartSvc
|
|
AnalSvc -->|배포 통계| DistSvc
|
|
|
|
%% Service to External
|
|
UserSvc -->|사업자번호 검증| External
|
|
AISvc -->|트렌드 분석/추천| External
|
|
ContentSvc -->|이미지 생성| External
|
|
DistSvc -->|다중 채널 배포| External
|
|
AnalSvc -->|채널별 통계| External
|
|
|
|
%% Styling
|
|
classDef service fill:#4ECDC4,stroke:#14B8A6,stroke-width:2px
|
|
classDef queue fill:#FB923C,stroke:#EA580C,stroke-width:2px
|
|
classDef external fill:#E5E7EB,stroke:#9CA3AF,stroke-width:2px
|
|
|
|
class UserSvc,EventSvc,AISvc,ContentSvc,DistSvc,PartSvc,AnalSvc service
|
|
class Queue queue
|
|
class External external
|