Commit a8264bab4aa84806760e5b59a19b5add96f2f5cd
1 parent
5dc2cab3
充电量订单表
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 | +} | ... | ... |