-
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.
#3 fix : 회원 프로필 이미지 업로드 & 수정 & 회원 프로필 RES 응답 수정
- Loading branch information
Showing
2 changed files
with
25 additions
and
2 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
15 changes: 15 additions & 0 deletions
15
src/main/java/com/zatch/zatchserver/dto/PostProfileImgDto.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,15 @@ | ||
package com.zatch.zatchserver.dto; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
import org.springframework.web.multipart.MultipartFile; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
@ApiModel(description = "프로필 업로드") | ||
public class PostProfileImgDto { | ||
@ApiModelProperty(value = "프로필 이미지 url", example = "https://아마존.이미지예시.png") | ||
private MultipartFile image; | ||
} |