Commit 3df97e6b325ff4dea72f1587b84607359c3403e5
Merge branch 'lingang' into changsha
Showing
1 changed file
with
11 additions
and
0 deletions
src/main/java/com/bsth/repository/JdlReceptionRepository.java
0 → 100644
| 1 | +package com.bsth.repository; | |
| 2 | + | |
| 3 | +import org.springframework.data.repository.PagingAndSortingRepository; | |
| 4 | +import org.springframework.stereotype.Repository; | |
| 5 | + | |
| 6 | +import com.bsth.entity.JdlReception; | |
| 7 | + | |
| 8 | +@Repository | |
| 9 | +public interface JdlReceptionRepository extends PagingAndSortingRepository<JdlReception, Integer>{ | |
| 10 | + | |
| 11 | +} | ... | ... |