com.quincy.auth.dao.CountryRepository Maven / Gradle / Ivy
package com.quincy.auth.dao;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.stereotype.Repository;
import com.quincy.auth.entity.Country;
@Repository
public interface CountryRepository extends JpaRepository, JpaSpecificationExecutor {
}