-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor : 두둥티켓 계좌정보 분리 #378
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
// 은행명 | ||
private String bankName; | ||
|
||
// 계좌번호 | ||
private String accountNumber; | ||
|
||
// 예금주 | ||
private String accountHolder; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
accountInfoVo를 TicketItem 내부에
embedded 시키는게 어떨까유?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
@NotNull | ||
@Schema(defaultValue = "0", nullable = false, example = "4000") | ||
private Long price; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@NotNull
말고 @Positive
아니면 @Min
을 이용해서 음수 처리도 해주면 좋을 거 같아요
Kudos, SonarCloud Quality Gate passed! 0 Bugs |
개요
작업사항
-계좌정보 vo로 분리
변경로직