Commit 6dcf28a3d0491f0ef7ddba04e2e4786ed77dd39b
1 parent
373cf0ed
公司service业务层实现接口
Showing
1 changed file
with
22 additions
and
0 deletions
src/main/java/com/bsth/service/BusinessService.java
0 → 100644
| 1 | +package com.bsth.service; | ||
| 2 | + | ||
| 3 | +import com.bsth.entity.Business; | ||
| 4 | + | ||
| 5 | +/** | ||
| 6 | + * | ||
| 7 | + * @Interface: BusinessService(公司service业务层实现接口) | ||
| 8 | + * | ||
| 9 | + * @extends : BaseService | ||
| 10 | + * | ||
| 11 | + * @Description: TODO(公司service业务层实现接口) | ||
| 12 | + * | ||
| 13 | + * @Author bsth@lq | ||
| 14 | + * | ||
| 15 | + * @Date 2016-4-28 9:21:17 | ||
| 16 | + * | ||
| 17 | + * @Version 公交调度系统BS版 0.1 | ||
| 18 | + * | ||
| 19 | + */ | ||
| 20 | +public interface BusinessService extends BaseService<Business, Integer> { | ||
| 21 | + | ||
| 22 | +} |