카드 매입 승인 경로 Spring Boot 3 전환 #10
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