-
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.
Browse files
Browse the repository at this point in the history
#334 냉장고 추가 및 정보 수정 API 리팩토링
- Loading branch information
Showing
15 changed files
with
157 additions
and
236 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
23 changes: 23 additions & 0 deletions
23
src/main/java/com/example/icebutler_server/fridge/dto/request/AddFridgeReq.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,23 @@ | ||
package com.example.icebutler_server.fridge.dto.request; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import javax.validation.constraints.NotBlank; | ||
import java.util.List; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@Schema(name = "냉장고 추가 요청 정보") | ||
public class AddFridgeReq { | ||
@NotBlank | ||
@Schema(description = "냉장고 이름", example = "우리집 냉장고") | ||
private String fridgeName; | ||
@Schema(description = "냉장고 설명", example = "우리집 냉장고입니다~") | ||
private String fridgeComment; | ||
@Schema(description = "냉장고 멤버 ID 리스트", example = "[ 1, 2 ]") | ||
private List<Long> members; | ||
} |
30 changes: 30 additions & 0 deletions
30
src/main/java/com/example/icebutler_server/fridge/dto/request/EditFridgeReq.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,30 @@ | ||
package com.example.icebutler_server.fridge.dto.request; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import javax.validation.constraints.NotBlank; | ||
import javax.validation.constraints.NotNull; | ||
import java.util.List; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@Schema(name = "냉장고 수정 요청 정보") | ||
public class EditFridgeReq { | ||
@NotBlank | ||
@Schema(description = "냉장고 이름", example = "우리집 냉장고") | ||
private String fridgeName; | ||
|
||
@Schema(description = "냉장고 설명", example = "우리집 냉장고입니다~") | ||
private String fridgeComment; | ||
|
||
@Schema(description = "냉장고 멤버 ID 리스트", example = "[ 1, 2 ]") | ||
private List<Long> members; | ||
|
||
@NotNull | ||
@Schema(description = "냉장고 주인 ID", example = "1") | ||
private Long newOwnerId; | ||
} |
15 changes: 0 additions & 15 deletions
15
src/main/java/com/example/icebutler_server/fridge/dto/request/FridgeModifyMembersReq.java
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
src/main/java/com/example/icebutler_server/fridge/dto/request/FridgeModifyReq.java
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
src/main/java/com/example/icebutler_server/fridge/dto/request/FridgeRegisterMembersReq.java
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
src/main/java/com/example/icebutler_server/fridge/dto/request/FridgeRegisterReq.java
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
src/main/java/com/example/icebutler_server/fridge/dto/response/UpdateMembersRes.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.