Commit b6e4b1d64d5fc4a42259e7d845c48b03a2e47615
1 parent
84d55174
公司控制器
Showing
1 changed file
with
27 additions
and
0 deletions
src/main/java/com/bsth/controller/BusinessController.java
0 → 100644
| 1 | +package com.bsth.controller; | |
| 2 | + | |
| 3 | +import org.springframework.web.bind.annotation.RequestMapping; | |
| 4 | +import org.springframework.web.bind.annotation.RestController; | |
| 5 | + | |
| 6 | +import com.bsth.entity.Business; | |
| 7 | + | |
| 8 | +/** | |
| 9 | + * | |
| 10 | + * @ClassName: LineController(公司控制器) | |
| 11 | + * | |
| 12 | + * @Extends : BaseController | |
| 13 | + * | |
| 14 | + * @Description: TODO(公司控制层) | |
| 15 | + * | |
| 16 | + * @Author bsth@lq | |
| 17 | + * | |
| 18 | + * @Date 2016-4-28 9:21:17 | |
| 19 | + * | |
| 20 | + * @Version 公交调度系统BS版 0.1 | |
| 21 | + * | |
| 22 | + */ | |
| 23 | +@RestController | |
| 24 | +@RequestMapping("business") | |
| 25 | +public class BusinessController extends BaseController<Business, Integer> { | |
| 26 | + | |
| 27 | +} | ... | ... |