-
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.
- Loading branch information
Showing
4 changed files
with
56 additions
and
5 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
22 changes: 22 additions & 0 deletions
22
src/main/java/co/kr/jurumarble/drink/controller/request/UpdateDrink.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,22 @@ | ||
package co.kr.jurumarble.drink.controller.request; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class UpdateDrink { | ||
private Long drinkId; | ||
private String name; | ||
private String type; | ||
private String manufacturer; | ||
private String alcoholicBeverage; | ||
private String rawMaterial; | ||
private String capacity; | ||
private String manufactureAddress; | ||
private String region; | ||
private String price; | ||
private String image; | ||
private Double latitude; | ||
private Double longitude; | ||
|
||
|
||
} |
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