-
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.
Revert "[feature] 시험 상태별 시험 리스트 조회, 시험 세션 내 학생 리스트 조회, 학생 단건 조회 #6"
- Loading branch information
1 parent
6fd8175
commit 1e521bb
Showing
20 changed files
with
59 additions
and
341 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Bug | ||
about: 어떤 버그인가요? | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
### 어떤 버그인가요? | ||
|
||
> 어떤 버그인지 간결하게 설명해주세요 | ||
### 예상 결과 | ||
|
||
> 예상했던 정상적인 결과가 어떤 것이었는지 설명해주세요 | ||
### 참고할만한 자료(선택) |
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,19 @@ | ||
--- | ||
name: Feature | ||
about: 어떤 기능을 추가하시나요? | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
### 어떤 기능인가요? | ||
|
||
> 추가하려는 기능에 대해 간결하게 설명해주세요 | ||
### 작업 상세 내용 | ||
|
||
- [ ] TODO | ||
- [ ] TODO | ||
- [ ] TODO | ||
|
||
### 참고할만한 자료(선택) |
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,2 @@ | ||
# 2024-2-SCS4031-4tune-1 | ||
융합캡스톤디자인 4tune - 스마트폰 카메라를 활용한 시험감독 보조 시스템 |
Empty file.
Empty file.
Empty file.
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
57 changes: 0 additions & 57 deletions
57
src/backend/Eyesee/src/main/java/com/fortune/eyesee/dto/UserDetailResponseDTO.java
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
src/backend/Eyesee/src/main/java/com/fortune/eyesee/dto/UserListResponseDTO.java
This file was deleted.
Oops, something went wrong.
25 changes: 12 additions & 13 deletions
25
src/backend/Eyesee/src/main/java/com/fortune/eyesee/entity/User.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,30 +1,29 @@ | ||
package com.fortune.eyesee.entity; | ||
|
||
|
||
import jakarta.persistence.*; | ||
import lombok.Data; | ||
|
||
import jakarta.persistence.*; | ||
|
||
@Entity | ||
@Table(name = "User") | ||
@Data | ||
public class User { | ||
|
||
@Id | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
private Integer userId; | ||
|
||
@Column(name = "sessionId", nullable = false) | ||
private int sessionId; // 세션 ID (int 타입) | ||
|
||
// @Column(name = "sessionId", nullable = false) | ||
// private int sessionId; // 세션 ID (int 타입) | ||
// | ||
// @Column(nullable = false) | ||
// private String userNum; | ||
@Column(nullable = false) | ||
private String userNum; | ||
|
||
@ManyToOne | ||
@JoinColumn(name = "sessionId", referencedColumnName = "sessionId") | ||
private Session session; | ||
|
||
private Integer userNum; | ||
private String department; | ||
private String userName; | ||
private Integer seatNum; | ||
} | ||
private Integer seatNum; // 좌석 번호 | ||
|
||
|
||
|
||
} |
14 changes: 0 additions & 14 deletions
14
...kend/Eyesee/src/main/java/com/fortune/eyesee/repository/CheatingStatisticsRepository.java
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/backend/Eyesee/src/main/java/com/fortune/eyesee/repository/CheatingTypeRepository.java
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
...ackend/Eyesee/src/main/java/com/fortune/eyesee/repository/DetectedCheatingRepository.java
This file was deleted.
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
12 changes: 0 additions & 12 deletions
12
src/backend/Eyesee/src/main/java/com/fortune/eyesee/repository/SessionRepository.java
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
src/backend/Eyesee/src/main/java/com/fortune/eyesee/repository/UserRepository.java
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
src/backend/Eyesee/src/main/java/com/fortune/eyesee/repository/VideoRecordingRepository.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.