Skip to content
This repository was archived by the owner on Jan 11, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
import com.example.spot.domain.Quiz;
import com.example.spot.domain.common.BaseEntity;
import jakarta.persistence.*;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.*;

@Getter
@Entity
Expand Down Expand Up @@ -36,6 +33,7 @@ public class MemberAttendance extends BaseEntity {

/* ----------------------------- 생성자 ------------------------------------- */

@Builder
public MemberAttendance(Boolean isCorrect) {
this.isCorrect = isCorrect;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,6 @@ private static void checkStartAndFinishDate(ScheduleRequestDTO.ScheduleDTO sched

/**
* 출석 퀴즈를 생성하는 메서드입니다.
*
* @param studyId 타겟 스터디의 아이디를 입력 받습니다.
* @param scheduleId 타겟 일정의 아이디를 입력 받습니다.
* @param quizRequestDTO 출석 퀴즈에 담길 질문과 정답을 입력 받습니다.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,6 @@ public StudyApplicantDTO isApplied(Long studyId) {

/**
* 금일 모든 스터디 회원의 출석 정보를 불러옵니다.
*
* @param studyId 출석 정보를 불러올 스터디의 아이디를 입력 받습니다.
* @param scheduleId 스터디 일정의 아이디를 입력 받습니다.
* @param date
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import com.example.spot.validation.annotation.ExistMember;
import com.example.spot.validation.annotation.TextLength;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;

Expand All @@ -12,6 +13,7 @@
public class StudyQuizRequestDTO {

@Getter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public static class QuizDTO {
Expand All @@ -26,6 +28,7 @@ public static class QuizDTO {
}

@Getter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public static class AttendanceDTO {
Expand Down
Loading
Loading