Commit 611cf547d391550ac89cc440df4e92f664ff4559

Authored by atao
1 parent ed3b7683

提交代码

src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/devicemanagement/PdaController.java
... ... @@ -15,6 +15,7 @@ import org.springframework.beans.factory.annotation.Value;
15 15 import org.springframework.web.bind.annotation.GetMapping;
16 16 import org.springframework.web.bind.annotation.PostMapping;
17 17 import org.springframework.web.bind.annotation.RequestBody;
  18 +import org.springframework.web.bind.annotation.RequestMapping;
18 19 import org.springframework.web.bind.annotation.RequestParam;
19 20 import org.springframework.web.bind.annotation.RestController;
20 21 import org.springframework.web.multipart.MultipartFile;
... ... @@ -60,6 +61,7 @@ import io.swagger.annotations.ApiOperation;
60 61 * 2017年8月31日 wangbiao v1.0.0 创建
61 62 */
62 63 @RestController
  64 +@RequestMapping("/padinfo")
63 65 public class PdaController extends BizController {
64 66  
65 67 private static final Logger logger = LoggerFactory.getLogger(InOutParkStatisticController.class);
... ... @@ -74,7 +76,7 @@ public class PdaController extends BizController {
74 76  
75 77  
76 78  
77   - @ApiOperation("PDA信息信息")
  79 + @ApiOperation("过车查询")
78 80 @PostMapping("/queryPassedca4pabe")
79 81 public BizResultVO<EasyUIDataGridVO<TpPTgsPassedcarDTO>> queryPassedca4pabe(@RequestBody TpPTgsPassedcarRequest tpPTgsPassedcarRequest, HttpServletRequest request,
80 82 HttpServletResponse response){
... ...