add Stock Entity, Repositoy and Service

This commit is contained in:
Olivier PARPAILLON
2025-07-09 10:54:45 +02:00
parent 36b6313335
commit 76736405a3
4 changed files with 61 additions and 1 deletions

View File

@@ -5,5 +5,5 @@ import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface ClientRepository extends JpaRepository<Client, Integer> {
public interface ClientRepository extends JpaRepository<Client, Long> {
}