Skip to content

Commit

Permalink
refactor FC-Chilli-Bubble#133: 함께배달 게시글 수정 DTO 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Ussu1112 committed Sep 26, 2023
1 parent e361524 commit badbb3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void updateStoreDetail(UpdateStoreDetailDTO requestDTO) {
this.deliveryFee = requestDTO.getDeliveryFee();
this.tag = requestDTO.getFoodTag();
this.bankName = requestDTO.getBankName();
this.accountNumber = requestDTO.getAccountNum();
this.accountNumber = requestDTO.getAccountNumber();
this.deadline = requestDTO.getDeadline();
this.maxAttendees = requestDTO.getMaxAttendees();
this.description = requestDTO.getDesc();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class UpdateStoreDetailDTO {
private Long deliveryFee;
private FoodTag foodTag;
private BankName bankName;
private String accountNum;
private String accountNumber;
private LocalDateTime deadline;
private Long maxAttendees;
private String desc;
Expand Down

0 comments on commit badbb3f

Please sign in to comment.