Skip to content

Commit

Permalink
hotfix: 편지 최소 상담료 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
aeyongdodam committed Jul 17, 2024
1 parent 8b3fd88 commit e549503
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class CounselorUpdateProfileRequest {
private Map<String, List<String>> consultTimes;

@Schema(description = "편지 상담료")
@Min(value = 5000, message = "편지 상담료는 최소 5000원입니다.")
@Min(value = 3000, message = "편지 상담료는 최소 3000원입니다.")
@Max(value = 50000, message = "편지 상담료는 최대 50000원입니다.")
private Long letterCost;

Expand Down

0 comments on commit e549503

Please sign in to comment.