|
|
@@ -1006,4 +1006,37 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String,Object> updateCarNo(@RequestBody Map<String,Object> map) {
|
|
|
return tmsFeign.updateCarNo(map);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "查询排队网格信息")
|
|
|
+ @PostMapping("/likeQueueGrid")
|
|
|
+ public Map<String, Object> likeQueueGrid(@RequestBody(required = false) Map<String, Object> map,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize) {
|
|
|
+ return tmsFeign.likeQueueGrid(map == null ? new HashMap<>() : map, apiId, pageNum, pageSize);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "查询排队实绩信息")
|
|
|
+ @PostMapping("/likeQueueResult")
|
|
|
+ public Map<String, Object> likeQueueResult(@RequestBody(required = false) Map<String, Object> map,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize) {
|
|
|
+ return tmsFeign.likeQueueResult(map == null ? new HashMap<>() : map, apiId, pageNum, pageSize);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "处理排队网格数据")
|
|
|
+ @PostMapping("/disposeQueueGrid")
|
|
|
+ public Map<String,Object> disposeQueueGrid(@RequestBody Map<String,Object> map) {
|
|
|
+ return tmsFeign.disposeQueueGrid(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "处理排队实绩数据")
|
|
|
+ @PostMapping("/disposeQueueResult")
|
|
|
+ public Map<String,Object> disposeQueueResult(@RequestBody Map<String,Object> map) {
|
|
|
+ return tmsFeign.disposeQueueResult(map);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|