Commit 373cf0ed1f617d67065ccab78dcac6cbbbb64dbb
1 parent
26d2b8fb
公司Repository数据持久层接口
Showing
1 changed file
with
26 additions
and
0 deletions
src/main/java/com/bsth/repository/BusinessRepository.java
0 → 100644
| 1 | +package com.bsth.repository; | ||
| 2 | + | ||
| 3 | +import org.springframework.stereotype.Repository; | ||
| 4 | + | ||
| 5 | +import com.bsth.entity.Business; | ||
| 6 | + | ||
| 7 | +/** | ||
| 8 | + * | ||
| 9 | + * @Interface: BusinessRepository(公司Repository数据持久层接口) | ||
| 10 | + * | ||
| 11 | + * @Extends : BaseRepository | ||
| 12 | + * | ||
| 13 | + * @Description: TODO(公司Repository数据持久层接口) | ||
| 14 | + * | ||
| 15 | + * @Author bsth@lq | ||
| 16 | + * | ||
| 17 | + * @Date 2016-05-03 9:21:17 | ||
| 18 | + * | ||
| 19 | + * @Version 公交调度系统BS版 0.1 | ||
| 20 | + * | ||
| 21 | + */ | ||
| 22 | + | ||
| 23 | +@Repository | ||
| 24 | +public interface BusinessRepository extends BaseRepository<Business, Integer> { | ||
| 25 | + | ||
| 26 | +} |