-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## ☀️ 작업 사항 - 유저 아바타 정보(현재 아바타, 해금한 아바타들) 불러오기 API - 아바타 해금 API - 유저 아바타 변경 API ## ☀️ 관련 이슈 - resolved : #55 ## ☀️ 참고사항 > **ERD 변경이 있습니다! 확인 부탁드립니다.** - avatar table 변경 후 작업하려고 하셨던 코드에 오류가 나서 임시로 수정해두었습니다! avatarTheme enum value 관련 에러였습니다. 편하신대로 수정 부탁드립니다.
- Loading branch information
Showing
23 changed files
with
485 additions
and
438 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
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
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
28 changes: 28 additions & 0 deletions
28
src/main/java/com/wakeUpTogetUp/togetUp/api/avatar/vo/UserAvatarData.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,28 @@ | ||
package com.wakeUpTogetUp.togetUp.api.avatar.vo; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
import lombok.Setter; | ||
|
||
@Schema(description = "유저 아바타 목록 가져오기") | ||
@Getter | ||
@Setter | ||
@NoArgsConstructor | ||
public class UserAvatarData { | ||
|
||
@Schema(description = "아바타 Id") | ||
private int avatarId; | ||
|
||
@Schema(description = "아바타 테마 이름") | ||
private String theme; | ||
|
||
@Schema(description = "가격") | ||
private int price; | ||
|
||
@Schema(description = "해금 레벨") | ||
private int unlockLevel; | ||
|
||
@Schema(description = "유저 보유 여부") | ||
private Boolean isUnlocked; | ||
} |
68 changes: 0 additions & 68 deletions
68
...ain/java/com/wakeUpTogetUp/togetUp/api/mappingGroupMission/model/MappingGroupMission.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.