-
Notifications
You must be signed in to change notification settings - Fork 0
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
RAC-257 feat : 결제 기능 추가 및 리팩토링" #89
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
package com.postgraduate.domain.auth.application.dto.req; | ||
|
||
import jakarta.validation.constraints.NotBlank; | ||
import jakarta.validation.constraints.NotEmpty; | ||
|
||
public record SeniorSignUpRequest(@NotEmpty Long socialId, @NotBlank String phoneNumber, @NotBlank String nickName, | ||
@NotBlank Boolean marketingReceive, @NotBlank String major, @NotBlank String postgradu, | ||
public record SeniorSignUpRequest(Long socialId, @NotBlank String phoneNumber, @NotBlank String nickName, | ||
Boolean marketingReceive, @NotBlank String major, @NotBlank String postgradu, | ||
@NotBlank String professor, @NotBlank String lab, @NotBlank String field, | ||
@NotBlank String keyword, @NotBlank String certification) { | ||
} |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 멘토링을 취소 또는 거절하는 경우에 payment 변경 로직이 필요할 것 같습니닷.. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 이부분은 환불 로직을 추가하면서 하려고 합니다! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 확인했습니다! |
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.
정산정보를 현재의 salaryDate 를 기준으로 가져오던데, 이러면 과거의 정산 정보는 못 보지 않나요?
그리고 완료된 항목만 노출해야 할 것 같아요!
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.
컨트롤러에 이렇게 나와있어서 맞춰서 했었는데 저도 이 부분에 대해서는 논의를 해보려고 했어요!
일단 이 부분은 방식에 대해서 추가로 논의하는게 어떨까요? 관리자 부분은 후순위이다 보니
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.
아하 제가 이후에 로직을 수정하고 설명은 수정을 안 했네요 ㅜㅜ