LeeJongbokz / interviewPrep

2 stars 2 forks source link

#32 모의고사 기능 #109

Open LeeJongbokz opened 1 year ago

wjdxor commented 1 year ago

모의고사 기능

sequenceDiagram
    유저->>서버: 모의고사 시작
    서버->>유저: Qusestion 10개 (랜덤생성, 전달)
    유저->>서버: Answer 10개 저장

    유저->>서버: 1번 모의고사 조회
    서버->>유저: Question 10개, Answer 10개
wjdxor commented 1 year ago
스크린샷 2022-11-13 오후 12 21 39

Exam Entity

변수명   설명
id 모의고사 식별자
Member 모의고사 작성자
List\<Answer> 답변 리스트 저장

클래스 다이어그램

classDiagram
class ExamService {
     ExamRepository examRepository
     AnswerRepository answerRepository

     answerRepository.saveAll(List<Answer> answers)
     examRepository.save(Exam exam)
     examRepository.findById(Long Id)     
}