Skip to content

Commit

Permalink
Merge pull request #134 from Ussu1112/feature/#133_delivery_refactor_…
Browse files Browse the repository at this point in the history
…testCode

refactor #133: 함께배달 게시글 수정 DTO 수정
  • Loading branch information
Ussu1112 authored Sep 26, 2023
2 parents e361524 + badbb3f commit 639d3ea
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 639d3ea

Please sign in to comment.