-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPR-152] feat: 암장 데이터 추가 및 수정 기능 구현
* [SPR-152] feat: 프로필 변경, 암장 서비스 변경기능 구현 * [SPR-152] feat: 암장 배경, 프로필 사진, 서비스 수정기능 구현 * [SPR-152] feat: 암장 약도, 가격표 데이터 추가 및 수정기능 구현 * [SPR-152] feat: SwaggerApiError 추가
- Loading branch information
Showing
7 changed files
with
172 additions
and
36 deletions.
There are no files selected for viewing
Submodule config
updated
from 81a056 to b90876
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
16 changes: 14 additions & 2 deletions
16
src/main/java/com/climeet/climeet_backend/domain/climbinggym/dto/ClimbingGymRequestDto.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 |
---|---|---|
@@ -1,14 +1,26 @@ | ||
package com.climeet.climeet_backend.domain.climbinggym.dto; | ||
|
||
import com.climeet.climeet_backend.domain.climbinggym.enums.ServiceBitmask; | ||
import java.util.List; | ||
import java.util.Map; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
public class ClimbingGymRequestDto { | ||
|
||
@Getter | ||
@NoArgsConstructor | ||
public static class UpdateClimbingGymInfoRequest { | ||
private Long gymId; | ||
public static class UpdateClimbingGymServiceRequest { | ||
|
||
private List<ServiceBitmask> serviceList; | ||
|
||
} | ||
|
||
@Getter | ||
@NoArgsConstructor | ||
public static class UpdateClimbingGymPriceRequest { | ||
|
||
private Map<String, String> priceMapList; | ||
} | ||
|
||
} |
Oops, something went wrong.