Skip to content

Commit

Permalink
Merge pull request #197 from fourix4/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
TaeHoon0 authored Jul 28, 2024
2 parents 54ebaa0 + 2bef1ef commit 4a6ce48
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public Response saveStudyCafe(@RequestParam String cafeName, @RequestParam Addre

@PatchMapping("/manager")
public Response updateStudyCafe(@RequestParam(name = "cafe_name") String cafeName,
@RequestParam(name = "address") AddressRequestDto address,
@ModelAttribute(name = "address") AddressRequestDto address,
@RequestParam(name = "opening_hours") String openingHours,
@RequestParam(name = "closed_hours") String closedHours,
@RequestParam(name = "closed_day") String closedDay,
@RequestParam(name = "cafe_phone") String cafePhone,
@RequestParam(name = "seats") Integer seats,
@RequestParam(name = "room_info") RoomInfoRequestDto roomInfo,
@RequestParam(name = "usage_fee") List<UsageFeeRequestDto> usageFee,
@ModelAttribute(name = "room_info") RoomInfoRequestDto roomInfo,
@ModelAttribute(name = "usage_fee") List<UsageFeeRequestDto> usageFee,
@RequestParam(name = "title_image", required = false) MultipartFile titleImage,
@RequestParam(name = "multiple_images", required = false) List<MultipartFile> multipleImages,
@RequestParam(name = "seat_chart_image", required = false) MultipartFile seatChartImage) {
Expand Down

0 comments on commit 4a6ce48

Please sign in to comment.