Changed folder structure

This commit is contained in:
2023-09-21 12:37:28 +03:00
parent ac175a6bd2
commit 984304a465
10 changed files with 184 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
package com.faf223.expensetrackerfaf.repository;
import com.faf223.expensetrackerfaf.model.BasicEntity;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
public interface BasicRepository extends JpaRepository<BasicEntity, Short> {
// You can define custom query methods here if needed
}