Commit f3240571951db1a20a61b48f9c83b9b8fbc26bc9

Authored by zlz
1 parent baeff7b9

查询车载上报停靠信息

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