LineController.java
577 Bytes
package com.bsth.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.bsth.entity.Line;
/**
*
* @ClassName: LineController(线路控制器)
*
* @Extends : BaseController
*
* @Description: TODO(线路控制层)
*
* @Author bsth@lq
*
* @Date 2016年4月28日 上午9:21:17
*
* @Version 公交调度系统BS版 0.1
*
*/
@RestController
@RequestMapping("line")
public class LineController extends BaseController<Line, Integer> {
}