StationController.java 595 Bytes
package com.bsth.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.bsth.entity.Station;

/**
 * 
 * @ClassName: StationController(站点控制器)
 * 
 * @Extends : BaseController
 * 
 * @Description: TODO(站点控制层)
 * 
 * @Author bsth@lq
 * 
 * @Date 2016年05月03日 上午9:21:17
 *
 * @Version 公交调度系统BS版 0.1
 * 
 */

@RestController
@RequestMapping("station")
public class StationController extends BaseController<Station, Integer> {

}