edit all sequence

This commit is contained in:
cherry2250
2025-10-22 20:13:56 +09:00
parent a8c6397edf
commit 9192e1e453
25 changed files with 106 additions and 106 deletions
@@ -64,7 +64,7 @@ else JWT 검증 성공
Service -> Repo: findParticipants(eventId, filters, pageable)
activate Repo
Repo -> DB: SELECT p.participant_id, p.name,\np.phone_number, p.entry_path,\np.application_number, p.participated_at,\np.is_winner\nFROM participants p\nWHERE p.event_id = ?\n[AND p.entry_path = ?]\n[AND p.is_winner = ?]\n[AND (p.name LIKE ? OR p.phone_number LIKE ?)]\nORDER BY p.participated_at DESC\nLIMIT ? OFFSET ?
Repo -> DB: 참여자 목록 조회\n(이벤트ID, 참여경로, 당첨여부,\n이름/전화번호 검색조건으로 필터링하여\n참여일시 내림차순으로 페이징 조회)
activate DB
note right of DB
@@ -82,7 +82,7 @@ else JWT 검증 성공
DB --> Repo: 참여자 목록 결과셋
deactivate DB
Repo -> DB: SELECT COUNT(*)\nFROM participants\nWHERE event_id = ?\n[필터 조건 동일]
Repo -> DB: 전체 참여자 수 조회\n(동일한 필터 조건 적용)
activate DB
DB --> Repo: 전체 건수
deactivate DB