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

import com.bsth.controller.BaseController;
import com.bsth.entity.traffic.VehicleInoutStop;
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> {
}