VehicleInoutStopController.java 626 Bytes
package com.bsth.controller.traffic;

import com.bsth.controller.BaseController;
import com.bsth.entity.traffic.VehicleInoutStop;
import com.bsth.service.traffic.VehicleInoutStopService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 *
 * @author BSTH
 *
 */
@RestController
@RequestMapping("vehicle_stop")
public class VehicleInoutStopController extends BaseController<VehicleInoutStop,Integer> {

    @Autowired
    private VehicleInoutStopService vehicleInoutStopService;

}