| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AppRepository |
|
| 1.0;1 |
| 1 | package com.ctrip.framework.apollo.portal.repository; | |
| 2 | ||
| 3 | import com.ctrip.framework.apollo.common.entity.App; | |
| 4 | ||
| 5 | import org.springframework.data.repository.PagingAndSortingRepository; | |
| 6 | ||
| 7 | ||
| 8 | public interface AppRepository extends PagingAndSortingRepository<App, Long> { | |
| 9 | ||
| 10 | App findByAppId(String appId); | |
| 11 | ||
| 12 | } |