Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 질문 및 선택지 조회 API #22

Open
2 tasks
pythonstrup opened this issue Jan 28, 2025 · 0 comments
Open
2 tasks

feat: 질문 및 선택지 조회 API #22

pythonstrup opened this issue Jan 28, 2025 · 0 comments
Assignees
Milestone

Comments

@pythonstrup
Copy link
Member

pythonstrup commented Jan 28, 2025

피처 개요

질문 및 선택지 조회 API 구성

중요도

A

난이도

피처 설명

  • 질문 및 선택지 조회 API 구성
  • 아래 도메인 모델링을 바탕으로 코드 구성
classDiagram
  QuestionBundle --* Question
	Question <|-- BalanceQuestion
	Question <|-- ChoiceQuestion
	ChoiceQuestion --* Choice
	BalanceQuestion --* Choice  
	Choice --* KeywordScore
	KeywordScore --* Keyword
  Record --* User
	Record --* Question
	Record --* Choice
  Record --* Answer
	class QuestionBundle {
		questions: List~Question~
	}
  class Question {
    <<interface>>
  }
  class BalanceQuestion {
    choice1: Choice
    choice2: Choice
  }
  class ChoiceQuestion {
    choices: List~Choice~
  }
  class Choice {
    scores: List~KeywordScore~
  }
  class KeywordScore {
    keyword: Keyword
    score: number
  }
  class Keyword {
    name: String
  }
  class Record {
    user: User
    question: Question
    choice:Choice
    answer: Answer
  }
Loading

체크리스트

  • 질문 및 선택지 기초 도메인 모델링
  • 질문 및 선택지 조회 API 구성

관련 정보

No response

@pythonstrup pythonstrup added this to the 1차 MVP milestone Jan 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

2 participants