-
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.
[#49]
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
src/main/java/com/careerzip/global/admin/dto/request/CreateQuestionPaperRequest.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,30 @@ | ||
package com.careerzip.global.admin.dto.request; | ||
|
||
import com.careerzip.domain.questionpaper.entity.QuestionPaper; | ||
import lombok.Getter; | ||
|
||
import java.time.LocalDate; | ||
import java.time.LocalDateTime; | ||
import java.time.LocalTime; | ||
|
||
@Getter | ||
public class CreateQuestionPaperRequest { | ||
|
||
private String title; | ||
private LocalDate startDate; | ||
private LocalDate endDate; | ||
private LocalDate finishDate; | ||
|
||
public QuestionPaper toEntity() { | ||
LocalTime startTime = LocalTime.of(0, 0, 0); | ||
LocalTime endTime = LocalTime.of(23, 59, 59); | ||
LocalTime finishTime = LocalTime.of(23, 55, 0); | ||
|
||
return QuestionPaper.builder() | ||
.title(title) | ||
.startDateTime(LocalDateTime.of(startDate, startTime)) | ||
.endDateTime(LocalDateTime.of(endDate, endTime)) | ||
.finishDateTime(LocalDateTime.of(finishDate, finishTime)) | ||
.build(); | ||
} | ||
} |