|
@@ -165,11 +165,13 @@ public class TMSController extends BaseRESTfulController {
|
|
*/
|
|
*/
|
|
@PostMapping("getShipLocationList")
|
|
@PostMapping("getShipLocationList")
|
|
@ApiOperation(value = "展示位置作业")
|
|
@ApiOperation(value = "展示位置作业")
|
|
- public Map<String, Object> getShipLocationList(@RequestBody(required = false) Map<String, Object> mapValue) {
|
|
|
|
|
|
+ public Map<String, Object> getShipLocationList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
|
+ String con
|
|
|
|
+ ) {
|
|
if (mapValue == null) {
|
|
if (mapValue == null) {
|
|
mapValue = new HashMap<>();
|
|
mapValue = new HashMap<>();
|
|
}
|
|
}
|
|
- return tmsshipFeign.getShipLocationList(mapValue==null?new HashMap<>():mapValue);
|
|
|
|
|
|
+ return tmsshipFeign.getShipLocationList(mapValue==null?new HashMap<>():mapValue,con);
|
|
}
|
|
}
|
|
|
|
|
|
@PostMapping("getShipLocation/{locationId}")
|
|
@PostMapping("getShipLocation/{locationId}")
|