-
Notifications
You must be signed in to change notification settings - Fork 4
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 #33 from woogieon8on/feat/21-admin-ticket
Feat/21 admin ticket
- Loading branch information
Showing
37 changed files
with
163 additions
and
107 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...ua/KahluaProject/confg/CorsMvcConfig.java → ...a/KahluaProject/config/CorsMvcConfig.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
2 changes: 1 addition & 1 deletion
2
...hlua/KahluaProject/confg/RedisConfig.java → ...lua/KahluaProject/config/RedisConfig.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
2 changes: 1 addition & 1 deletion
2
...a/KahluaProject/confg/SecurityConfig.java → .../KahluaProject/config/SecurityConfig.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
2 changes: 1 addition & 1 deletion
2
...ua/KahluaProject/confg/SwaggerConfig.java → ...a/KahluaProject/config/SwaggerConfig.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
6 changes: 3 additions & 3 deletions
6
src/main/java/kahlua/KahluaProject/controller/ApplyController.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
6 changes: 3 additions & 3 deletions
6
src/main/java/kahlua/KahluaProject/controller/TicketController.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
6 changes: 3 additions & 3 deletions
6
src/main/java/kahlua/KahluaProject/converter/ApplyConverter.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
4 changes: 2 additions & 2 deletions
4
src/main/java/kahlua/KahluaProject/converter/AuthConverter.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
2 changes: 1 addition & 1 deletion
2
src/main/java/kahlua/KahluaProject/converter/UserConverter.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
2 changes: 1 addition & 1 deletion
2
...oject/dto/request/ApplyCreateRequest.java → ...dto/apply/request/ApplyCreateRequest.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
2 changes: 1 addition & 1 deletion
2
...ect/dto/response/ApplyCreateResponse.java → ...o/apply/response/ApplyCreateResponse.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
2 changes: 1 addition & 1 deletion
2
...roject/dto/response/ApplyGetResponse.java → .../dto/apply/response/ApplyGetResponse.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
16 changes: 16 additions & 0 deletions
16
src/main/java/kahlua/KahluaProject/dto/apply/response/ApplyListResponse.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,16 @@ | ||
package kahlua.KahluaProject.dto.apply.response; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
@Builder | ||
@Schema(title = "지원자 리스트 응답 DTO") | ||
public class ApplyListResponse<T> { | ||
|
||
@Schema(description = "지원자 리스트") | ||
private T applies; | ||
} |
13 changes: 0 additions & 13 deletions
13
src/main/java/kahlua/KahluaProject/dto/response/ApplyListResponse.java
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
src/main/java/kahlua/KahluaProject/dto/response/TicketItemResponse.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...to/request/ParticipantsCreateRequest.java → ...et/request/ParticipantsCreateRequest.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
3 changes: 1 addition & 2 deletions
3
...ject/dto/request/TicketCreateRequest.java → ...o/ticket/request/TicketCreateRequest.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
2 changes: 1 addition & 1 deletion
2
...ct/dto/response/ParticipantsResponse.java → ...ticket/response/ParticipantsResponse.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
2 changes: 1 addition & 1 deletion
2
...ct/dto/response/TicketCreateResponse.java → ...ticket/response/TicketCreateResponse.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
4 changes: 1 addition & 3 deletions
4
...oject/dto/response/TicketGetResponse.java → ...to/ticket/response/TicketGetResponse.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
38 changes: 38 additions & 0 deletions
38
src/main/java/kahlua/KahluaProject/dto/ticket/response/TicketItemResponse.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,38 @@ | ||
package kahlua.KahluaProject.dto.ticket.response; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import kahlua.KahluaProject.domain.ticket.Meeting; | ||
import kahlua.KahluaProject.domain.ticket.Status; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@Builder | ||
@AllArgsConstructor | ||
public class TicketItemResponse { | ||
|
||
@Schema(description = "티켓 id") | ||
private Long id; | ||
|
||
@Schema(description = "결제상태") | ||
private Status status; | ||
|
||
@Schema(description = "예약번호") | ||
private String reservation_id; | ||
|
||
@Schema(description = "티켓 구매자 이름") | ||
private String buyer; | ||
|
||
@Schema(description = "티켓 구매자 전화번호") | ||
private String phone_num; | ||
|
||
@Schema(description = "티켓 매수") | ||
private Integer total_ticket; | ||
|
||
@Schema(description = "티켓 구매자 전공") | ||
private String major; | ||
|
||
@Schema(description = "뒷풀이 참여여부") | ||
private Meeting meeting; | ||
} |
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.