-
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.
#57 [REFACTOR] Point dto rename, refactor
- Loading branch information
Showing
36 changed files
with
338 additions
and
330 deletions.
There are no files selected for viewing
247 changes: 152 additions & 95 deletions
247
server/src/main/generated/org/tattour/server/global/util/EntityDtoMapperImpl.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
27 changes: 0 additions & 27 deletions
27
...c/main/java/org/tattour/server/domain/order/controller/dto/response/GetOrderSheetRes.java
This file was deleted.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
.../main/java/org/tattour/server/domain/order/controller/dto/response/ReadOrderSheetRes.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,27 @@ | ||
package org.tattour.server.domain.order.controller.dto.response; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.AccessLevel; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import org.tattour.server.domain.order.provider.vo.OrderAmountInfo; | ||
import org.tattour.server.domain.user.provider.vo.UserPointAfterOrderInfo; | ||
import org.tattour.server.domain.sticker.provider.vo.ReadOrderSheetStickerInfo; | ||
@Schema(description = "결제 페이지 불러오기") | ||
@Getter | ||
@AllArgsConstructor(access = AccessLevel.PRIVATE) | ||
public class ReadOrderSheetRes { | ||
private ReadOrderSheetStickerInfo readOrderSheetStickerInfo; | ||
|
||
private OrderAmountInfo orderAmountInfo; | ||
|
||
private UserPointAfterOrderInfo userPointAfterOrderInfo; | ||
|
||
public static ReadOrderSheetRes of( | ||
ReadOrderSheetStickerInfo readOrderSheetStickerInfo, | ||
OrderAmountInfo orderAmountInfo, | ||
UserPointAfterOrderInfo userPointAfterOrderInfo) { | ||
return new ReadOrderSheetRes(readOrderSheetStickerInfo, orderAmountInfo, | ||
userPointAfterOrderInfo); | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
server/src/main/java/org/tattour/server/domain/order/facade/OrderFacade.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
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
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
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
Oops, something went wrong.