-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #189 from 9oormthon-univ/feat/excel
Feat/excel
- Loading branch information
Showing
7 changed files
with
388 additions
and
113 deletions.
There are no files selected for viewing
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
11 changes: 8 additions & 3 deletions
11
src/main/java/com/jangburich/domain/store/domain/StoreChargeHistoryResponse.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 |
---|---|---|
@@ -1,21 +1,26 @@ | ||
package com.jangburich.domain.store.domain; | ||
|
||
import java.time.LocalDate; | ||
import java.time.LocalDateTime; | ||
|
||
import com.jangburich.domain.point.domain.TransactionType; | ||
import com.querydsl.core.annotations.QueryProjection; | ||
|
||
public record StoreChargeHistoryResponse( | ||
Long id, | ||
LocalDateTime createdAt, | ||
String teamName, | ||
Integer transactionedPoint | ||
Long teamId, | ||
Integer transactionedPoint, | ||
TransactionType transactionType | ||
) { | ||
@QueryProjection | ||
public StoreChargeHistoryResponse(Long id, LocalDateTime createdAt, String teamName, Integer transactionedPoint) { | ||
public StoreChargeHistoryResponse(Long id, LocalDateTime createdAt, String teamName, Long teamId, | ||
Integer transactionedPoint, TransactionType transactionType) { | ||
this.id = id; | ||
this.createdAt = createdAt; | ||
this.teamName = teamName; | ||
this.teamId = teamId; | ||
this.transactionedPoint = transactionedPoint; | ||
this.transactionType = transactionType; | ||
} | ||
} |
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.