Skip to content

Commit

Permalink
fix: 여행 일정 예상 비용 기본 값 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
lcw729 committed Jun 7, 2024
1 parent 38d672c commit 9f98999
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ public void createTrip(TripReqDto tripReqDto) throws NoSuchElementException{
.tripName(tripReqDto.getTripName())
.tripContent(tripReqDto.getTripContent())
.tripGoalAmount(tripReqDto.getTripGoalAmount())
.tripExpectedAmount(BigDecimal.ZERO)
.tripDay(tripReqDto.getTripDay())
.tripImg(tripReqDto.getTripImg())
.tripStartDay(tripReqDto.getTripStartDay())
Expand Down

0 comments on commit 9f98999

Please sign in to comment.