GeoPremiseRepository.java 239 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 package com.bsth.repository; import com.bsth.entity.GeoPremise; import org.springframework.stereotype.Repository; /** * @author Hill */ @Repository public interface GeoPremiseRepository extends BaseRepository<GeoPremise, Integer> { }