mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 14:46:23 +00:00
33 lines
3.9 KiB
Plaintext
33 lines
3.9 KiB
Plaintext
[From string (line 38) ]
|
|
|
|
@startuml event-대시보드조회
|
|
|
|
|
|
|
|
|
|
...
|
|
... ( skipping 184 lines )
|
|
...
|
|
|
|
alt 캐시 히트
|
|
Cache --> Service: Dashboard data
|
|
Service --> Controller: DashboardResponse
|
|
|
|
else 캐시 미스
|
|
Cache --> Service: null
|
|
deactivate Cache
|
|
|
|
par
|
|
Service -> Repo: findTopByStatusAndUserId(ACTIVE, userId, limit=5)
|
|
activate Repo
|
|
Repo -> DB: SELECT e.*, COUNT(p.id) as participant_count\nFROM events e\nLEFT JOIN participants p ON e.id = p.ev ...
|
|
activate DB
|
|
DB --> Repo: Active events
|
|
deactivate DB
|
|
Repo --> Service: List<Event> (active)
|
|
deactivate Repo
|
|
|
|
and
|
|
^^^^^
|
|
Syntax Error? (Assumed diagram type: sequence)
|