-
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 #47 from CSID-DGU/backend/feature/registerExam
BE: [fix] 시험 등록 api jwt 기반 인증 수정 #6
Showing
4 changed files
with
102 additions
and
5 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
20 changes: 20 additions & 0 deletions
20
src/backend/Eyesee/src/main/java/com/fortune/eyesee/dto/ExamRequestDTO.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,20 @@ | ||
package com.fortune.eyesee.dto; | ||
|
||
import lombok.Data; | ||
|
||
import java.time.LocalDate; | ||
import java.time.LocalTime; | ||
|
||
@Data | ||
public class ExamRequestDTO { | ||
private String examName; | ||
private String examSemester; | ||
private Integer examStudentNumber; | ||
private String examLocation; | ||
private LocalDate examDate; | ||
private LocalTime examStartTime; | ||
private Integer examDuration; | ||
private Integer examQuestionNumber; | ||
private Integer examTotalScore; | ||
private String examNotice; | ||
} |
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