Skip to content

Commit

Permalink
Merge pull request #34 from GDSC-snowflowerthon/feat/quiz-32
Browse files Browse the repository at this point in the history
[feat] 재난 퀴즈 엔티티 생성
  • Loading branch information
ri-naa authored Jan 12, 2024
2 parents 539deed + c31a79c commit d124a0f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/main/java/com/ALGo/ALGo_server/entity/Quiz.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package com.ALGo.ALGo_server.entity;

import jakarta.persistence.*;
import lombok.Getter;
import lombok.NoArgsConstructor;

@Entity
@Getter
@NoArgsConstructor
public class Quiz {

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long quiz_id;

@Column(nullable = false)
private String question;

@Column(nullable = false)
private boolean answer;

@Column(nullable = false)
private String description;

}
10 changes: 10 additions & 0 deletions src/main/java/com/ALGo/ALGo_server/repository/QuizRepository.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.ALGo.ALGo_server.repository;

import com.ALGo.ALGo_server.entity.Quiz;
import org.springframework.data.jpa.repository.JpaRepository;

public interface QuizRepository extends JpaRepository<Quiz, Long> {

Quiz findByQuiz_id(Long quiz_id);

}

0 comments on commit d124a0f

Please sign in to comment.