Skip to content

Commit

Permalink
[be/fix] ai 응답값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwanghyeon-k committed Feb 26, 2025
1 parent 176d729 commit cfd07b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
package com.techeer.backend.api.aifeedback.repository;

import com.techeer.backend.api.aifeedback.domain.AIFeedback;
import java.util.List;
import java.util.Optional;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface AIFeedbackRepository extends JpaRepository<AIFeedback, Long> {
Optional<AIFeedback> findByResumeId(Long resumeId);
List<AIFeedback> findByResumeId(Long resumeId);

Optional<AIFeedback> findById(Long feedbackId);

}
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@
public class AllFeedbackResponse {
private final List<FeedbackResponse> feedbackResponses; // 여러 개의 피드백을 리스트로 포함
private final String aiFeedbackContent;
private final Long aiFeedbackId;
}

0 comments on commit cfd07b9

Please sign in to comment.