package io.github.jhipster.sample.repository; import io.github.jhipster.sample.domain.Label; import org.springframework.data.jpa.repository.*; import java.util.List; /** * Spring Data JPA repository for the Label entity. */ @SuppressWarnings("unused") public interface LabelRepository extends JpaRepository<Label,Long> { }