为什么在spring boot 中 自定义接口可以继承JpaRepository类呢?
public interface GirlRepository extends JpaRepository<Girl, Integer> {
}
JpaRepository是接口,接口可以继承接口