카드 매입 승인 경로 Spring Boot 3 전환 (ACX-E2E-1785394564819)
Some checks failed
Verify / source-contract (push) Has been cancelled
Some checks failed
Verify / source-contract (push) Has been cancelled
This commit is contained in:
parent
d057364307
commit
f006ec0d0c
1 changed files with 19 additions and 0 deletions
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue