Updated Logic for Retrieving Previous Form

This commit is contained in:
harish
2024-09-20 16:25:57 +05:30
parent 79603a0c0d
commit 43cc11ba02
2 changed files with 68 additions and 40 deletions

View File

@@ -10,4 +10,6 @@ import java.util.List;
public interface FormRepository extends JpaRepository<FormEntity,Long> {
List<FormEntity> findByCallId(Long callId);
List<FormEntity> findByIdIn(List<Long> formId);
}