-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from PawWithU/feat/125-patch-mypage-profile-api
[Feature] 이동봉사 중개 마이페이지 프로필 수정 API 구현
- Loading branch information
Showing
5 changed files
with
92 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...com/pawwithu/connectdog/domain/intermediary/dto/request/IntermediaryMyProfileRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.pawwithu.connectdog.domain.intermediary.dto.request; | ||
|
||
import jakarta.validation.constraints.Size; | ||
|
||
public record IntermediaryMyProfileRequest( | ||
@Size(max=50, message = "한줄 소개는 50자 이하로 입력해 주세요.") | ||
String intro, | ||
@Size(max=50, message = "문의 받을 연락처는 50자 이하로 입력해 주세요.") | ||
String contact, | ||
@Size(max=200, message = "안내사항은 200자 이하로 입력해 주세요.") | ||
String guide | ||
) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters