결제 전환 목표 아키텍처 정의 (2/2) (iss-f2a42175edbf)
All checks were successful
ci / test (pull_request) Successful in 7s

This commit is contained in:
forge-bot 2026-07-12 03:30:14 +00:00
parent 8a30a95d48
commit ab391e7416

View file

@ -0,0 +1,19 @@
```mermaid
sequenceDiagram
participant User
participant PaymentService
participant PaymentGateway
participant Database
User->>PaymentService: 결제 요청
PaymentService->>Database: 거래 시작
Database-->>PaymentService: 거래 ID
PaymentService->>PaymentGateway: 결제 진행
alt Success
PaymentGateway-->>PaymentService: 결제 성공
PaymentService->>Database: 거래 확정
else Failure
PaymentGateway-->>PaymentService: 결제 실패
PaymentService->>Database: 거래 롤백
end
```