|
@ -0,0 +1,14 @@
|
|
|
package com.yihu.wlyy.repository.address;
|
|
|
|
|
|
import com.yihu.wlyy.entity.address.Country;
|
|
|
import org.springframework.data.repository.PagingAndSortingRepository;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2017/7/20.
|
|
|
*/
|
|
|
public interface CountryDao extends PagingAndSortingRepository<Country, Long> {
|
|
|
|
|
|
List<Country> findByStreet(String street);
|
|
|
}
|