/*
 * File: src/main/java/purchase/repository/GRNItemRepository.java
 * Description: This repository interface provides CRUD operations for the GRNItem entity, enabling data access
 * and manipulation for Goods Received Note (GRN) items. It extends JpaRepository to inherit standard database
 * interaction methods and can be customized with additional queries if necessary. This repository is used
 * in the ERP system's purchase module to track individual items associated with each GRN.
*/

package com.nebula.erp.purchase.repository;

import com.nebula.erp.purchase.model.GRNItem;
import org.springframework.data.jpa.repository.JpaRepository;

public interface GRNItemRepository extends JpaRepository<GRNItem, Long> {}