-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
176d729
commit cfd07b9
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
6 changes: 5 additions & 1 deletion
6
...end/src/main/java/com/techeer/backend/api/aifeedback/repository/AIFeedbackRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters