Skip to content

Commit

Permalink
💬 #24 거래 상태 주석 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Yong99 committed Jan 30, 2024
1 parent de8ae8f commit 3c28311
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/com/eum/bank/domain/deal/entity/Deal.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ public class Deal extends BaseEntity {
private Account senderAccount;

// 상태
// a: 거래 생성 후 거래 성사 전 (수신계좌가 안엮인 상태)
// b: 거래 성사 후 (수신계좌가 엮인 상태)
// c: 거래 취소 됨
// d: 거래 수행 됨
@Column(name = "status", nullable = false)
private String status;

Expand Down

0 comments on commit 3c28311

Please sign in to comment.