Package com.lpvs.repository


package com.lpvs.repository
This package contains repository interfaces responsible for managing data access and persistence for the application. Each repository interface typically extends JpaRepository for basic CRUD operations and may include additional methods for custom queries and data retrieval.

The repositories in this package interact with the underlying database to perform operations on entities such as LPVSDetectedLicense, LPVSLicenseConflict, LPVSMember, LPVSQueue, and LPVSPullRequest.

The custom queries defined in these repositories use native queries (SQL) or Spring Data JPA query language to retrieve specific data sets based on various criteria.