카드 매입 승인 경로 Spring Boot 3 전환 (ACX-E2E-1785394564819)
Some checks failed
Verify / source-contract (push) Has been cancelled

This commit is contained in:
forge-bot 2026-07-30 11:34:45 +00:00
parent d057364307
commit f006ec0d0c

View file

@ -0,0 +1,19 @@
package com.acquirex.approval;
public enum CardAcquisitionApprovalStatus {
PENDING("승인 대기"),
APPROVED("승인 완료"),
REJECTED("승인 거절"),
CANCELLED("승인 취소"),
PROCESSING("처리 중");
private final String description;
CardAcquisitionApprovalStatus(String description) {
this.description = description;
}
public String getDescription() {
return description;
}
}