CarsController.java
348 Bytes
package com.bsth.controller;
import com.bsth.entity.Cars;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* Created by xu on 16/5/31.
*/
@RestController
@RequestMapping("cars")
public class CarsController extends BaseController<Cars, Integer> {
}