Commit 5fdd2dd4ee76ef6317ca9afa749e2db1c600e4c5
1 parent
9bd936f4
充电量订单表
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 | +} |