Untitled
Shubh
plain_text
9 months ago
299 B
7
Indexable
package com.warehouse.repository;
import com.warehouse.model.Product;
import org.springframework.data.jpa.repository.JpaRepository;
import java.util.List;
public interface ProductRepository extends JpaRepository<Product, Integer> {
List<Product> findByStockGreaterThanEqual(int stock);
}
}Editor is loading...
Leave a Comment