Commit baeff7b963c5a1497e6d3886d58afd121b9f8e8a

Authored by zlz
1 parent 80395991

查询车载上报停靠信息

src/main/java/com/bsth/controller/traffic/VehicleInoutStopController.java 0 → 100644
  1 +package com.bsth.controller.traffic;
  2 +
  3 +import com.bsth.controller.BaseController;
  4 +import com.bsth.entity.traffic.VehicleInoutStop;
  5 +import com.bsth.service.traffic.VehicleInoutStopService;
  6 +import org.springframework.beans.factory.annotation.Autowired;
  7 +import org.springframework.web.bind.annotation.RequestMapping;
  8 +import org.springframework.web.bind.annotation.RestController;
  9 +
  10 +/**
  11 + *
  12 + * @author BSTH
  13 + *
  14 + */
  15 +@RestController
  16 +@RequestMapping("vehicle_stop")
  17 +public class VehicleInoutStopController extends BaseController<VehicleInoutStop,Integer> {
  18 +
  19 + @Autowired
  20 + private VehicleInoutStopService vehicleInoutStopService;
  21 +
  22 +}
... ...