This commit is contained in:
2025-11-30 20:12:42 +07:00
parent bbe7d1ea6c
commit cda75b85f8

View File

@@ -15,4 +15,7 @@ import java.util.Optional;
@Repository
public interface EmployeeRepository extends JpaRepository<Employee, Long> {
Optional<Employee> findByCode(String code);
}