|
|
@@ -103,6 +103,13 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsFeign.getTransOrderList(map ==null ? new HashMap<>() : map, apiId, pageNum, pageSize);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value="查询运输订单所有运输实绩")
|
|
|
+ @ApiImplicitParam(name = "map", value = "JSON格式数据", required = true, dataType = "Map<String, Object>")
|
|
|
+ @PostMapping(value = "/getTransResult")
|
|
|
+ public Map<String, Object> getTransResult(@RequestBody(required = false) Map<String, Object> map){
|
|
|
+ return tmsFeign.getTransResult(map);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value="同步进厂")
|
|
|
@ApiImplicitParam(name = "map", value = "JSON格式数据", required = true, dataType = "Map<String, Object>")
|
|
|
@PostMapping(value = "/syncEnfactoryResult")
|